Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/07/2009, 14:36
Avatar de Sergestux
Sergestux
 
Fecha de Ingreso: agosto-2007
Ubicación: Tapachula
Mensajes: 1.218
Antigüedad: 17 años, 3 meses
Puntos: 20
Respuesta: Flex 3 como sumar con TextInput y el boton

Esto podria ser una forma:
Código xml:
Ver original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
  3.     <mx:Script>
  4.         <![CDATA[
  5.        
  6.        private function Sumar():void
  7.        {
  8.             txtResultado.text=String(int(Num1.text) + int(Num2.text));
  9.            
  10.        }
  11.        
  12.        ]]>
  13.     </mx:Script>
  14.  
  15.  
  16.     <mx:Button x="57" y="79" label="Sumar" click="Sumar();"/>
  17.     <mx:TextInput x="57" y="10" id="Num1"/>
  18.     <mx:TextInput x="57" y="40" id="Num2"/>
  19.     <mx:TextInput x="110" y="109" width="107" id="txtResultado"/>
  20.     <mx:Label x="10" y="111" text="El resultado es:" color="#2FF309"/>
  21.     <mx:Label x="10" y="10" text="Nro 1:" color="#2FF309" fontFamily="Arial"/>
  22.     <mx:Label x="10" y="42" text="Nro 2:" color="#2FF309" fontFamily="Arial"/>
  23.    
  24. </mx:Application>