Control how external movies play with stop and play buttons
Download source project t1065.zip (2 kb)
mymovie.play();
mymovie.stop();
Download source project t1065a.zip (2 kb)
movieforward=1;
movieforward=0;
movieforward=-1;
movieforward=0;
function moviecontrol() {
if(movieforward==-1) mymovie.gotoAndPlay(mymovie._currentframe-5);
if(movieforward==1) mymovie.gotoAndPlay(mymovie._currentframe+5);
}
movieforward=0;
setInterval(moviecontrol,10);