"Skip Intro" Button Issue
I have a layer containing a button named "Skip" that holds the code:
Skip.addEventListener(MouseEvent.CLICK,releaseHandler);
function releaseHandler(e:MouseEvent):void {
gotoAndPlay(153);
}
I would like the skip button to go to and play frame 153, but this code only makes it go to the frame of that specific layer. However, I have all the other animated elements in movieclips inside of seperate layers. Before I had them in seperate layers but without each being a movieclip, and the button worked fine, but now how can I change the code to reflect the changes I made?
