Microsoft
Software
Hardware
Network
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
What should be changed to make this code work under PHP4?
Can I disable computer browsing service on server 2003?
How do I figure out the percentage of storage used?
watchguard upgrade 8.3 to 9.0
PageRequestManagerServerEr<wbr />rorExcepti<wbr />on 500
Bash Scripting - Making a script that counts how many times it has been run
loadMovie() within a loaded movie???
How do I disable EHLO in IIS?
closing http methods cause flash not play
How can I start a web site from the command line.