I’ve used this tutorial http://kirupa.com/developer/mx2004/button_effect.htm(very helpful!) to make a complex rollover button. Problem is, I want to link back to my root timeline, to a labeled frame, not to an external URL. I used this code:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
this.onRelease = function() {
root.gotoAndStop(“1”);
};
(my frame is labeld 1) but when I test it, the complex rollover works, but when I click, it just jumps back to the beginning of my movie! I’m positive the code is not set to frame 1, but label 1. Any ideas?? I have about 28 buttons i’d really like to be able to link back to the root timeline, so if anyone can help, i’ll be forever grateful!