Aqui os dejo el codigo por si le sirve a alguien
Código :
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="service.send()">
<mx:HTTPService id="service" url="cargador.php"/>
<mx:VBox >
<mx:Repeater id="rep" dataProvider="{service.lastResult.registro}">
<mx:Panel x="10" y="10" width="100%" height="134" layout="absolute" title="{rep.currentItem.libro}">
<mx:Label x="0" y="10" text="Libro" width="57"/>
<mx:Text x="65" y="10" text="{rep.currentItem.libro}" width="512"/>
<mx:Label x="0" y="36" text="Editorial" width="57"/>
<mx:Text x="65" y="36" text="{rep.currentItem.editorial}" width="512"/>
</mx:Panel>
</mx:Repeater>
</mx:VBox>
</mx:Application>
Saludos
