<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="initApp()" width="300" height="300" viewSourceURL="srcview/index.html"> <mx:Script> <![CDATA[ import com.gabi.gentleItemEditor.vos.UserVO; import com.gabi.gentleItemEditor.views.ViewItem; import flash.utils.getTimer; import mx.collections.ArrayCollection; [Bindable] private var nomesAC:ArrayCollection; private function initApp():void{ nomesAC=new ArrayCollection; nomesAC.addItem(new UserVO("Gabriela")); nomesAC.addItem(new UserVO("FabrÃcio")); nomesAC.addItem(new UserVO("Filipe")); nomesAC.addItem(new UserVO("VeraAAAAAAAAAAAAAAAAAAAAA")); nomesAC.addItem(new UserVO("Nelson")); } ]]> </mx:Script> <mx:List id="ls" dataProvider="{nomesAC}" labelField="nome" itemRenderer="com.gabi.gentleItemEditor.views.GentleItemEditor"/> </mx:Application>