Hola disculpen como puedo hacer una simple suma usando TextInput y Button, como muestra el ejemplo de la imagen.
Código PHP:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Button x="57" y="79" label="Sumar"/>
<mx:TextInput x="57" y="10"/>
<mx:TextInput x="57" y="40"/>
<mx:TextInput x="110" y="109" width="107"/>
<mx:Label x="10" y="111" text="El resultado es:" color="#2FF309"/>
<mx:Label x="10" y="10" text="Nro 1:" color="#2FF309" fontFamily="Arial"/>
<mx:Label x="10" y="42" text="Nro 2:" color="#2FF309" fontFamily="Arial"/>
</mx:Application>