Código ActionScript :
stop();
myClip.buttonMode = true;
myClip.addEventListener(MouseEvent.ROLL_OVER, clipOverHandler);
myClip.addEventListener(MouseEvent.ROLL_OUT, clipOutHandler);
myClip.addEventListener(MouseEvent.CLICK, clipClickHandler);
function clipOverHandler(event:MouseEvent) {
event.target.gotoAndPlay("over");
myMov.alpha("50");
}
function clipOutHandler(event:MouseEvent) {
event.target.gotoAndPlay("out");
}
function clipClickHandler(event:MouseEvent) {
gotoAndStop("test");
}muchas gracias
