Mega Code Archive

 
Categories / Flex / Data Model
 

Binding control property to a property of another control

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:TextInput id="helloTextInput" text="Hello, World" />     <mx:Label text="{ helloTextInput.text }" /> </mx:Application>