Bind Label control to TextInput control's text : TextInput Data Binding « Components « Flex
- Flex
- Components
- TextInput Data Binding
Bind Label control to TextInput control's text

<?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 }" />
</mx:Application>
Related examples in the same category