Mega Code Archive

 
Categories / Flex / Data Model
 

Simple Binding Test

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"     backgroundColor="#FFFFFF">   <mx:Script>            [Bindable]       [NonCommittingChangeEvent("change")]       private var me:String="AAAA";       </mx:Script>   <mx:Panel title="Simple Binding"  width="500" height="90"      layout="horizontal">         <mx:Button click="me='test'"/>           <mx:Label text="{me}"/>   </mx:Panel> </mx:Application>