Mega Code Archive
Using Image renderer for List
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;
}