Why doesnt it work?

i have a button, “About”. this along with my other buttons are on scene 1. when you click about, its supposed to go to “ABOUT” scene, and play. so i put, this code on the “about” button and it doesnt work.

on (press, release) {
gotoAndPlay(“about”, 1);
}

Put this code on the button. no need to put ‘press’.

on (release) {
gotoAndPlay(“ABOUT”, 1);
}

thanks, ill try it out.

nope, it doesnt work.

Can you post your .FLA?

In the main scene, you have a stop(); on frame 130. There are no actions assigned to the buttons at that frame. Either put the on(release) statements earlier or take the stop() out.