Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I advance a movie on a mouse click?

Status
Not open for further replies.

cawthor

Programmer
May 31, 2001
89
US
I want to create a flash presentation. If I use a 'Stop' action in my movie to basically stop between frames, is there a way I can continue my movie by simply clicking the mouse (without having to click on a 'Next' button). I just want a mouse click to trigger the movie to start again (until the next stop). I guess I could create a transparent button the size of the screen??
 
"...I guess I could create a transparent button the size of the screen?"
That's an idea!
mywink.gif
ldnewbie
Hope that this
was helpful!
 
alternatively you could have an empty movie clip on the stage with...

onClipEvent(mouseDown){
_root.play();
}



attached.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top