I’m sure this probably easily solved but is eluding me. I am using the rollover/rollout tutorial on the front page of this site. The rollovers work great and function perfect, but now I’m trying to add script for it to go to another scene instead of a website. I tried adding the gotoAndPlay scene etc. script and it didn’t work. Here is what I currently have:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
this.onRelease = function() {
_root.gotoAndPlay(“about scene”, 1);
};
Thanks for any help you guys can give, much appreciated.