I am using AS 3.0 and I have a button (mcbtn1) with a movie clip inside that has a animation when you hover over plays the animation and stops and then another button that I want to go to scene 2
function gotoCenter(event:MouseEvent):void {
MovieClip(root).btn_K.gotoAndStop(1, "Scene");
}
mcbtn1.addEventListener(MouseEvent.CLICK, gotoCenter);
this is the code I am using