vote up 0 vote down star

I'm in frame 1 of a movie, and I want to use getChildByName("mc_movieclip"); to get a reference to mc_movieclip. The problem is that mc_movieclip does not exist in frame 1 but only in frame 5. How can I get a reference to this MovieClip, even though it's in another frame?

flag
Why do you want to access the MovieClip early. What are you trying to do? – Christopher W. Allen-Poole Sep 24 at 8:05

1 Answer

vote up 1 vote down

The easiest way to fix this is that you put a copy of mc_movieclip on frame 1 and make it hidden. mc_movieclip.visible=false will do the trick.

Note: if your mc has animation (in its timeline) then you have to restart that animation on frame 5 to get the same effect as before.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.