Question : How do I make a loop in actionscript 3 that will add several new instances of a graphic from the library

I have just updated my flash version and I am having trouble getting used to actionscript 3.

I want to create a loop that will load several instances of the same graphic.  So far I have managed to load 1 instance using this code:

               var myMark:mark_graph = new mark_graph();
            this.addChild(myStage);
            myStage.x = 25;
            myStage.y = 55;

i have tried putting this inside a for loop  e.g.:
             
              var count:int = 10;
              var i:int = 5;
              for(i = 5; i < count; i++){
                    // code here //
              }

My problem is that I dont know how to create the instance names dynamically so when I include the first code inside my for loop it does nothing.

Hopefully this will make sense to someone :).   Many thanks in advance for any help you can give


Answer : How do I make a loop in actionscript 3 that will add several new instances of a graphic from the library

Hi,

You could use an array for your instances!
Random Solutions  
 
programming4us programming4us