I Have a flash button problem! Can anyone help?!?

  • Thread starter Thread starter Joey
  • Start date Start date
J

Joey

Guest
ok, I have a flash project that requires me to have buttons. I am trying to make 3 buttons go to certain frames, play, and set a stop and go back to the main frame where the buttons are. does anyone have the actionscript code on how to do that? Also, how do you link those actions to the buttons? I have this project due in about 2 hours! Please help!
 
in the main ActionScript, use

button1.gotoAndPlay(frameNumber);

then on the frame you want to stop at in the button put a

stop();
 
Back
Top