I have just a movieClip green ball on my main timeline, inside of this movie clip, i have 2 frames, the first one with the normal green ball, the other one with a bigger green ball and a "Back" movieclip button (both with a Stop();), a just can't make the back button, gotoAndStop on the frame 1, where the green ball movieclip is small.
Main timeline code:
stop();
greenball.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
function fl_MouseClickHandler(event:MouseEvent):void
{
greenball.gotoAndStop(2); //frame 2 where the ball is bigger
}
On greenball movieclip frame 1 i just have a stop();
On frame 2, a big greenball and a "back" movieclip button:
stop();
back.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_4);
function fl_MouseClickHandler_4(event:MouseEvent):void
{
gotoAndStop(1);
trace ("Back to 1");
}
The trace shows "Back to 1", but the ball don't go back to be small, the big ball does not exist on frame 1 as I used to do on ACS2.
What can I do?