Can anyone help. I am trying to use the Complex Button RollOut/RollOver Effects Tutorial from this site. http://www.kirupa.com/developer/mx2004/button_effect.htm
I am having problems getting the button when clicked to go to a frame in my movie. The goToAndPlay code does not seem to work. Any ideas what I am doing wrong? I know there is no gotoandplay code in the tutorial, I want to rplace the getUrl code.
This is the code I have,
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
this.onRelease = function() {
gotoAndPlay(“Scene 1”, 51);
};
Thanks Nick