Projects - Flex Builder - Static Repeater

.mxml code:

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="275" height="200" > <mx:Script> <![CDATA[ [Bindable] public var myArray:Array=[1,2,3,4]; ]]> </mx:Script> <mx:Panel title="Repeater: emulating a for loop" paddingBottom="10" paddingLeft="10" paddingRight="10" paddingTop="10" > <mx:Repeater id="myRep" dataProvider="{myArray}"> <mx:Label id="myLabel" text="This is loop #{myRep.currentIndex}" /> </mx:Repeater> </mx:Panel> </mx:Application>