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”); ???
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");
}