Ver Mensaje Individual
  #15 (permalink)  
Antiguo 21/07/2005, 00:01
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 9 meses
Puntos: 53
Ok, para que unicamentre funcione cuando presionas la barra espaciadora, pues entonces hay que condicionarlo, tu codigo quedaria asi

Código PHP:
_root.clip._visible 0;
tecla = new Object();

tecla.onKeyDown = function() {
    if(
Key.getAscii()==32)
       
_root.clip._visible 1;
    
};

Key.addListener(tecla);

tecla.onKeyUp = function() {
   
_root.clip._visible 0;
};