Mega Code Archive

 
Categories / Flex / Components
 

ArrayCollection as the data source for Repeater

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Script>          [Bindable]     public var dp:Array = [ { label: "Google",url: "http://www.google.com" },                             { label: "Flash", url: "http://www.adobe.com/flash" } ];        </mx:Script>     <mx:ArrayCollection id="myAC" source="{dp}"/>     <mx:Repeater id="r" dataProvider="{myAC}">         <mx:Button label="{r.currentItem.label}" click="navigateToURL(new URLRequest(event.currentTarget.getRepeaterItem().url));"/>     </mx:Repeater> </mx:Application>