Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/07/2009, 12:46
SoftEdward
 
Fecha de Ingreso: febrero-2005
Ubicación: 101% Paraguayo
Mensajes: 57
Antigüedad: 19 años, 9 meses
Puntos: 0
Validar un campo Input.. Sencillo pero no sale.

Buenas,

Mi idea es hacer una sencilla validacion, que si un campo esta vacio haga un trace ("FALTA EL CAMPO"), pero si lleno que haga un trace("CORRECTO")

Tengo este script en FLASH MX

Código HTML:
var strAsunto String;
on(press){
	strAsunto=this.asunto_txt.text;
	if(strAsunto == "")
		trace('* FALTA COMPLETAR CAMPO ASUNTO');
	}else if(strAsunto != ""){
		trace('* Correcto');
	}
}
que estoy haciendo mal? al ejecutar esa funcion siempre me trae CORRECTO :S

Alguien me puede ayudar?