To make you button clickable, you need to add a click event listener to your button. Then you can use the gotoAndStop() method to go to a different frame.
PHP Code:yourButtonInstanceName.addEventListener(MouseEvent.CLICK, clicked);
function clicked(e:MouseEvent):void
{
gotoAndStop(yourFrameNumberHere);
}




Reply With Quote