03/07/2007, 06:15
|
| | | Fecha de Ingreso: julio-2004 Ubicación: Mallorca (Illes Balears)
Mensajes: 1.121
Antigüedad: 20 años, 5 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;
}
}
|