xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">
import mx.collections.ArrayCollection;
private static var birdList:Array = ["a.gif","a.gif","a.gif"];
[Bindable]
private var birdListAC:ArrayCollection = new ArrayCollection(birdList);
private function initCatalog():void {
birdlist.dataProvider = birdListAC;
}
itemRenderer="mx.controls.Image" creationComplete="initCatalog()">