Comunidad de diseño web y desarrollo en internet online

casos if y else... no funciona

Citar            
MensajeEscrito el 01 Jun 2011 02:39 pm
Hola... buen día.

Tengo un cuadro te texto llamado algo_txt
otro llamado ola_txt

al oprimir un botón, quiero que si al introducir el número 2 o el 4 en algo_txt y un valor entre 0 y 90 en ola_txt, me aparesca "BIEN" en un cuadro de texto dinámico llamado re_txt.

si alguna de las opciones es incorrecta, debe aparecer "MAL" en el cuadro de texto dinámico llamado re_txt.


MI PROBLEMA:

Al correr la película, si ingreso el primer valor correcto (es decir, 2 o 4) en algo_txt y un valor erroneo en ola_txt (osea un valor que no esté entre 0 y 90), me aparece el mensaje "BIEN" en el cuandro de texto dinámico llamado re_txt.
Y no debe ser así.

El codigo que tengo es este:

Código ActionScript :

on (release){
   
   if (algo_txt.text==2 or algo_txt.text==4 and 0<=ola_txt.text<=90) {
      re_txt.text="BIEN"
   } else {
      re_txt.text="MAL"
   }
}


En el código, ya intenté reemplazado or y and por || y && respectivamente, y me genera el mismo problema.

Por dmperez777

10 de clabLevel



 

firefox
Citar            
MensajeEscrito el 01 Jun 2011 04:29 pm
Hola amigo,

prueba este codigo.

Código ActionScript :

btn1.onRelease = function(){
   if(algo_txt.text == 2 or algo_txt.text == 4 and ola_txt.text >= 0 and ola_txt.text <= 90){
      re_txt.text = "CORRECTO"
   }else{
      re_txt.text = "MAL"
   }
}

Por useraul

Claber

131 de clabLevel



Genero:Masculino  

Huantalandia

firefox
Citar            
MensajeEscrito el 01 Jun 2011 05:40 pm
Gracias, pero no. no funcionó.
Pero gracias por el aporte.

Por dmperez777

10 de clabLevel



 

firefox
Citar            
MensajeEscrito el 02 Jun 2011 04:17 pm
separas las validaciones algo haci y pruebas haber

Código ActionScript :

if( (algo_txt.text == 2 or algo_txt.text == 4)  and (ola_txt.text >= 0 and ola_txt.text <= 90))

Por evangelio_ra

49 de clabLevel



 

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.