11/05/2008, 11:40
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 6 meses Puntos: 406 | |
Re: No se detiene película al "rolloverear" el botón que la reproduce! Hola migatomola:
Coloca el código así:
on(rollOver){
this.onEnterFrame = function() {
this.gotoAndStop(this._currentframe-1);
}
}
on(rollOut){
delete onEnterFrame;
}
Espero haberte sido de ayuda. |