les envio el AS3
stop ();
boton_btn.buttonmode = true;
boton_btn.addEventListener(MouseEvent.ROLL_OVER, sobreMI);
boton_btn.addEventListener(MouseEvent.ROLL_OUT, fueraMI);
function sobreMI(event:MouseEvent):void
{
boton_btn.gotoAndPlay("SOBRE");
}
function fueraMI(event:MouseEvent):void
{
boton_btn.gotoAndPlay("FUERA");
}
import flash.events.MouseEvent;
boton_btn.addEventListener(MouseEvent.CLICK,funcionAlHacerClick);
function funcionAlHacerClick(event:MouseEvent):void
{
gotoAndPlay("31");
}