Ver Mensaje Individual
  #6 (permalink)  
Antiguo 27/07/2006, 15:29
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 10 meses
Puntos: 53
asi:

Código PHP:
boton1.onRollOver = function():Void{
   
//this._alpha = 50; <-comentas esta linea
   
this.onEnterFrame = function():Void{
      
this._alpha +=10;
      if(
this._alpha>=100)
          
delete this.onEnterFrame;
   }
}


boton1.onRollOut = function():Void{
   
//this._alpha = 100; <-comenta esta linea
   
this.onEnterFrame = function():Void{
      
this._alpha -=10;
      if(
this._alpha<=50)
          
delete this.onEnterFrame;
   }

eso es todo!

have funnnnn