okey, i made a movieclip button and everything works fine except that when i press the button it’s supposed to send me to the next scene, but it doesn’t, nothing happens. What am i doing wrong??
here’s the script i did in the frame 1 of the scene:
stop();
this.botonix.onRollOver = function() {
botonix.gotoAndPlay(“over”);
};
this.botonix.onPress = function() {
botonix.gotoAndPlay(“down”);
};
this.botonix.onRelease = function() {
botonix.gotoAndPlay(“Scene 3”,1);
};
any ideas???