I just started using AS 3.0 and am getting killed. I have a button (nxtBTN) in my main scene and want it to go to scene 1_A when clicked. This is what I have, based on a turorial I was looking at:
stop();
nxtBTN.addEventListener(MouseEvent.CLICK,uniquefunctionname);
function uniquefunctionname(evt:MouseEvent):void {
gotoAndPlay(1,‘1_A’);
}