Ver Mensaje Individual
  #6 (permalink)  
Antiguo 03/07/2007, 06:15
Avatar de Mahalo
Mahalo
 
Fecha de Ingreso: julio-2004
Ubicación: Mallorca (Illes Balears)
Mensajes: 1.121
Antigüedad: 19 años, 9 meses
Puntos: 12
Re: simulador de credito

Prueba así:
Código:
botonoperacion.onRelease=function(){
   var cuotaFP:Number = Math.round((Number(idcampo1.text)* 0.7)/100);
   if (Number(idcampo2.text)>=0 || Number(idcampo2.text)<=5) {
      _root.idresultado.text=(420);
   } else if (Number(idcampo2.text)>=6 || Number(idcampo2.text)<=9) {
      _root.idresultado.text=cuotaFP;
   }
}