Mega Code Archive

 
Categories / Flex / Components
 

Use curly braces ({}) syntax to show a Text control that gets its data from a TextInput controls text property

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">   <mx:TextInput id="myTI" />   <mx:Text id="myText" text="{myTI.text}" /> </mx:Application>