# Movie click go to problem

**URL:** https://forum.kirupa.com/t/movie-click-go-to-problem/158949
**Category:** Uncategorized
**Created:** [August 13, 2005, 1:15am UTC](https://forum.kirupa.com/t/movie-click-go-to-problem/158949 "2005-08-13T01:15:10Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Artimus](https://avatars.discourse-cdn.com/v4/letter/a/ac8455/32.png) [@Artimus](https://forum.kirupa.com/u/Artimus)
#### Post date: [August 13, 2005, 1:15am UTC](https://forum.kirupa.com/t/movie-click-go-to-problem/158949/1 "2005-08-13T01:15:10Z")

</div>

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
