PDA

View Full Version : Play and Replay Buttons


Jack Benage
02-18-2004, 08:21 PM
OK......This probably is as lame as it gets but i dont know how to do it and its bugging me. Basically i am making movies in Flash MX 2004 Corporate edition and there are keyframes etc. etc. all that good stuff i would like to make the first slide not play until clicked the play button so i click on the frame and put
stop()
and that quits it from playing then i make a button and label it Play and then i click on the button and type in
onclick{play()}

Can someone please tell me how to do this as well as a REPLAY button that works even for multiple scenes. THANKS!!!

GothicMink
02-19-2004, 04:55 AM
Hello.

Try to use:


on(release)
{

_root.play();

}

Jack Benage
02-19-2004, 04:42 PM
Thanks that worked. Thanks alot for the help.