topical media & game development
professional-flex-code-09-BindingWCurly.mx
professional-flex-code-09-BindingWCurly.mx
[swf]
flex
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
backgroundColor="#FFFFFF">
<mx:Script>
<![CDATA[
[Bindable]
public var myLabelName:String = "Hello World";
]]>
</mx:Script>
<mx:Panel title="Binding With Curly Braces" width="350" height="150">
<mx:Spacer height="100%"/>
<mx:Label text="{this.myLabelName}" />
<mx:Spacer height="100%"/>
</mx:Panel>
<mx:TextArea id="ta1" text="" change="this.myLabelName=ta1.text" />
</mx:Application>
(C) Æliens
04/09/2009
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.