buggy basic flash
buggy basic flash
Out of context: Reply #12
- Started
- Last post
- 13 Responses
- kingsteven0
"So what I need to then is figure out how to use an array (i think) as an instance name?"
i'm not sure that's what you're trying to do... you can access a movieclip's child clips by using an array access operator ([]) if you know the movieclip's parent clip
ie:
var i = 0;
_root.createEmptyMovieClip("mc0... 1):
trace(_root["mc"+i]); //output: "_level0.mc0"