Tag Archives: loop

For loop in actionscript 3

Example of a for loop in ActionScript 3. Enjoy for (var i:Number = 0; i < image.length; i++){ addChild(image[i]); image[i].x = (50*i); }

Posted in ActionScript 3.0 | Tagged , , , , | Leave a comment