btnValidar.onPress=function() {
if (txtNombre.text!="" && txtPwd.text!="") {
if(txtNombre.text=="Fulanito" && txtPwd.text=="123") {
gotoAndStop(2);
}
} else {
trace("Inserte el nombre y contraseña del usuario..");
}
}
stop();