# .this Button Help

**URL:** https://forum.kirupa.com/t/this-button-help/298891
**Category:** Uncategorized
**Created:** [October 26, 2009, 8:45pm UTC](https://forum.kirupa.com/t/this-button-help/298891 "2009-10-26T20:45:01Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![orinj](https://avatars.discourse-cdn.com/v4/letter/o/f6c823/32.png) [@orinj](https://forum.kirupa.com/u/orinj)
#### Post date: [October 26, 2009, 8:45pm UTC](https://forum.kirupa.com/t/this-button-help/298891/1 "2009-10-26T20:45:01Z")

</div>

Hey Guys,

I need some Help. please.

Below is the code I have on a \_btn. This \_btn is inside a Master movie. What I want to do, is go to a different “Scene” and play a movie on frame 1. Do I need to change this…\_parent.gotoAndPlay(“hood”); ???

```auto

stop();
                                             
this.onEnterFrame = function(){
    if(rewind == true){ 
        prevFrame();
    }
}

this.onRollOver = function(){
    rewind = false;
    play();
}

this.onRollOut = function(){
    rewind = true;
}

this.onRelease=function()
{
_parent.gotoAndPlay("hood");
}

```
