codigo
Código :
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");
}
y los errores son..
Código :
Escena 1, Capa 'acciones', Fotograma 1, Línea 3 1084: Error de sintaxis: se esperaba rightparen antes de SobreMi. Escena 1, Capa 'acciones', Fotograma 1, Línea 4 1084: Error de sintaxis: se esperaba rightparen antes de FueraMi.
y no entiendo, verifique y esta bien escrito (segun el tutorial)
Tutorial>>
Gracias!
