Implementing Two-Way Bindings
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:TextInput id="oneTextInput" text="{anotherTextInput.text}" /> <mx:TextInput id="anotherTextInput" text="{oneTextInput.text}" /> </mx:Application>