movieclip var
movieclip var
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- emmaopeel0
are you trying to access a mc via a variable name? If so, you need to use (is it called?) array access notation...
as in:
myClip = "loop_mc"
_root[myClip].gotoAndStop(2)
which will go into the movie clip "loop_mc" on the main timeline and stop at frame 2...