21/11/2007, 17:06
|
| | | Fecha de Ingreso: noviembre-2007 Ubicación: ...
Mensajes: 7
Antigüedad: 17 años 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");
}
|