alright so the first button problem was solved got it to work with this code
stop();
G_btn.addEventListener(MouseEvent.CLICK, backClick);
function backClick(event:MouseEvent):void{
gotoAndStop(3);//replace one w/ any #
}
now a couple of frame later i made the menu and i have 2 more buttons. the play button and the scene select button. i gave the play button the instance name of P_btn and put in the same code only i changed the the MC instance name
stop();
P_btn.addEventListener(MouseEvent.CLICK, backClick);
function backClick(event:MouseEvent):void{
gotoAndStop(1);//replace one w/ any #
}
once i test the movie i get this error
1021: Duplicate function definition. source: function backClick(event:MouseEvent):void{
what i do wrong?