Mega Code Archive

 
Categories / Flex / Development
 

MXML Databinding between TextInput and Label

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">     <mx:TextInput id="myInput" width="150"/>     <mx:Label id="myLabel" width="150"         text="{myInput.text}"/> </mx:Application>