Click to See Complete Forum and Search --> : Flash- adding a pause button


jonathanhou
08-11-2006, 06:07 PM
How do I add a pause button to a slideshow? :confused:

This website (http://www.cakesandculinarycreations.com/) (once you click "enter" then "Photo Gallery" at the top, then "Wedding Cakes" on the left) does exactly what I want. Where there is a "previous", "Pause", "play", and "next" link. How do I do this?

Any help is greatly appreciated! :)

By the way, sorry for not giving you a direct link, they keep the link the same throughout the website. What a pain!

jonathanhou
08-11-2006, 06:09 PM
By the way, I have Flash Pro MX 2004.

stephen1davis
08-13-2006, 04:12 PM
add a button with this in the actions panel:

on(release){
stop();
}

and if it's referring to a movie clip:

on(release){
with(movie clip instance name){
stop();
}
}

jonathanhou
08-13-2006, 10:48 PM
Thanks!

This worked perfectly:
on(release){
stop();
}


What's the coding for play though?

Thanks for your help!