Mega Code Archive

 
Categories / Flex / Components
 

Uses the bound property

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"     backgroundColor="white">     <mx:ComboBox dataProvider="{useThisData}">         <mx:Script>                          import mx.collections.ArrayCollection;             [Bindable]             public var useThisData:ArrayCollection;                    </mx:Script>     </mx:ComboBox> </mx:Application>