i have an moovie where ai use this script :
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
gotoAndPlay(17);
}
the last part is not working, and that is gotoAndPaly(17);
I only wanna go to that frame and play
thx