Here's the code:

  <mx:TileList id="tl" dataProvider="{uniXML}" labelField="groupID" 
    iconField="thumbnail" width="400" height="400">
    <mx:itemRenderer>
      <mx:Component>
        <mx:HBox>
          <mx:Text width="100" height="100" text="{data.groupID}"/>
          <mx:Image width="100" height="100" source="{data.thumbnail}"/>
        </mx:HBox>
      </mx:Component>
    </mx:itemRenderer>


...Thanks to Greg Lafrance on the Adobe Flex list.

Sherm

Reply via email to