to try and explain a bit better,
there's a movieclip on the stage which 10 frames in, and there's a button on the stage, when the button is pressed i want the movieclip to change to the second frame.
here's the code I've got at the moment
stop();
import flash.events.MouseEvent;
home_button.addEventListener(MouseEvent.MOUSE_DOWN, homeclick);
challenge_button.addEventListener(MouseEvent.MOUSE_DOWN,challengeclick);
function homeclick (event:MouseEvent) {
gotoAndPlay("1");
}
function challengeclick (event:MouseEvent) {
gotoAndPlay ("2");
}
Anyway, if anyone knows how to solve this problem, please help,
Thanks,
Arthur

New Topic/Question
Reply



MultiQuote




|