Mega Code Archive

 
Categories / Flex / Components
 

Inline Renderer

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">   <mx:ArrayCollection id="answerData">     <mx:String>a.png</mx:String>     <mx:String>b.png</mx:String>     <mx:String>c.png</mx:String>   </mx:ArrayCollection>     <mx:List id="myList" dataProvider="{answerData}" rowCount="{answerData.length}" variableRowHeight="true"      width="80" height="140">     <mx:itemRenderer>       <mx:Component>         <mx:Image source="{data}"/>       </mx:Component>     </mx:itemRenderer>   </mx:List>      </mx:Application>