Goto frame of child movieclip on later frame
Hi, I've been trying to find a tutorial or description on how to do this. Sorry if I'm asking something repetitive but I can't seem to find the right way to search for it or find something that explains it.
What I'm trying to do is click btn1 on mc1 timeline frame 1 that will goto and play mc1 timeline frame 30 where the child mc2 is, then play mc2 at frame 10.
I know this won't work as mc2 doesn't exist til frame 30 but to give an idea
btn1.addEventListener(MouseEvent.MOUSE_UP, release1);
function release1(evt:MouseEvent):void {
this.gotoAndPlay(30).mc2(10);
}
kind of like how you can go to a frame label in a scene
mc1.gotoAndPlay("intro", "Scene 12");
From what I've gathered so far it's using integers?
Thanks for any help.
