Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/10/2008, 14:33
worldPeace_Plis
Usuario no validado
 
Fecha de Ingreso: marzo-2007
Mensajes: 238
Antigüedad: 17 años, 1 mes
Puntos: 5
Respuesta: AYUDA,... efecto simple en flash de boton pero nosé!!

create un movieclip (instancia:clip), adentro de el has una animacion, mmmm, de unos 10 frames + -, y ponle un stop() al inicio y al final

luego usaeste codigo:
Código PHP:
clip.onRollOver = function() { this.gotoAndPlay (2); };
clip.onRollOut = function() {
    
this.onEnterFrame = function () {
        
this.prevFrame();
        if (
this._currentframe==1) {
            
trace ('termino');
            
delete this.onEnterFrame
        
}
    }

Suerte!