Hi here’s my AS2 code…
stop();
website_button.onRollOver = function () {
gotoAndStop (2);
}
website_button.onRollOut = function () {
gotoAndStop (1);
}
website_button.onPress = function () {
gotoAndPlay(3);
this.onRollOut = null;
}
Very simple AS2 code, which works fine for the button i first used it on. I then go to program my other buttons and change the instance names both on the objects and in the code and it stops working. The mouse over works and gets stuck on frame 2 (mouse on) I have no idea why this is but it is very frustrating. Could someone help please, I’m a bit of a noob. 