Mega Code Archive

 
Categories / Flex / Components
 

Cause a TextInput to modify the Label

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Label id="myLabel" text="The TextInput will change my text" />     <mx:TextInput id="myTextInput" change="myLabel.text = myTextInput.text" /> </mx:Application>