Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/11/2007, 11:52
cruzemer
 
Fecha de Ingreso: noviembre-2007
Mensajes: 15
Antigüedad: 16 años, 4 meses
Puntos: 0
Re: Ayuda con un textInput!!!!!!

En el escenario estan 2 textInput para las cuales tengo el siguiente codigo, pero no se si lo estoy aplicando bien.


Código:
alClicar.click = function(objeto){
   if (objeto.target == texto_txt){ 
     FocusManager.setFocus(texto1_txt);
   }
    if (objeto.target == texto2_txt){
      FocusManager.setFocus(texto2_txt);
   }
}
texto_txt.addEventListener("click", alClicar);
texto2_txt.addEventListener("click", alClicar);
Como lo ven???