Дубль три =) (Спасибо за терпение)
Основной файл:

Код:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" initialize="init()"
xmlns:my="hello">
<fx:Declarations>
<fx:XMLList id="xmll">
<hello>
<man>5 </man>
<image>1.jpg</image>
</hello>
<hello>
<man>6 </man>
<image>1.jpg</image>
</hello>
</fx:XMLList>
<s:XMLListCollection id="xmlc" source="{xmll}"/>
</fx:Declarations>
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:List id="list" dataProvider="{xmlc}" selectedIndex="0" itemRenderer="Mit" />
</s:Application>