Es decir para ser mas especifico tengo el siguiente código
Código HTML:
//Fichas
ficha.buttonMode = true;
ficha.addEventListener(MouseEvent.ROLL_OVER, fsobreMi3);
ficha.addEventListener(MouseEvent.ROLL_OUT, ffueraMi3);
function fsobreMi3(event:MouseEvent):void
{
event.target.gotoAndPlay("Sobre");
}
function ffueraMi3(event:MouseEvent):void
{
event.target.gotoAndPlay("Fuera");
}