To pause a movie : _root.myMovie.stop();
To play a movie : _root.myMovie.play();
to use the same button, use a variable :
ActionScript Code:
on (release) {
if (_root.myMoviePlaying == "yes") {
_root.myMovie.stop();
_root.myMoviePlaying == "no";
}else{
_root.myMovie.play();
_root.myMoviePlaying == "yes";
}
}
ofcourse, replace all paths with their appropriate instance names. To make it clearer for the user, you could put this code on a invisible button, place a mc with different graphics under it and tell the graphics mc to go to the needed frame, just like you set the variable to either yes or no.