Any ideas on how i would get a movie to pause and wait for a mouse click before it continues??
I want to be able to clcik anywhere on the screen so that the movie continues from there after te mouse has been clicked.
Put a this in your frame:
// stop the movie
stop () ;
// restart onMouseDown
this.onMouseDown = function () {
delete this.onMouseDown ;
play () ;
}