Ver Mensaje Individual
  #7 (permalink)  
Antiguo 07/12/2005, 17:36
Avatar de luistar
luistar
 
Fecha de Ingreso: marzo-2005
Ubicación: Argentina
Mensajes: 939
Antigüedad: 19 años, 1 mes
Puntos: 0
Código PHP:
boton.onRollOver = function(){
    
imagen._visible true;
}
boton.onRollOut = function(){
    
imagen._visible false;
}
//otro ejemplo prodria ser
boton.onRollOver = function(){
    
imagen.onEnterFrame = function(){
        if(
this._alpha>0){
            
this._alpha -=10;
        }else{
            
this._alpha=0;
            
detele this.onEnterFrame;
        }
    }
}
boton.onRollOut = function(){
    
imagen.onEnterFrame = function(){
        if(
this._alpha<100){
            
this._alpha +=10;
        }else{
            
this._alpha=100;
            
detele this.onEnterFrame;
        }
    }

:D :P saluos
__________________
Si digo que soy mentiroso. ¿Lo soy?