Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/11/2007, 17:06
Avatar de penHolder
penHolder
 
Fecha de Ingreso: noviembre-2007
Ubicación: ...
Mensajes: 7
Antigüedad: 16 años, 5 meses
Puntos: 0
Re: luego de hacerle clic como evitar que este activo

Código:
function habilitar (){
   //
   miBoton1.enabled = true;
   miBoton1._alpha = 100;
   //
   miBoton2.enabled = true;
   miBoton2._alpha = 100;
   //
   miBoton3.enabled = true;
   miBoton3._alpha = 100;
    //
}
miBoton.onPress = function(){
   //
   habilitar()
}
miBoton.onRelease = function(){
   //
   this.enabled = false;
   this._alpha = 50;
   trace("boton inhabilitado");
}