Mi xml es este:
Código:
Y en flex lo tengo asi:<photos> <imagen> <nombre>uno</nombre> <src>C:\Documents and Settings\mov_12-18_85.jpg</src> </imagen>
Código:
por su ayuda gracias! <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="gal.send()" borderColor="#0D91EE"> <mx:HTTPService id="gal" url="C:\Documents and Settings\12 hrs.xml" useProxy="false"/> <mx:Panel width="583" height="342" title="Dia:" layout="absolute"> <mx:Image id="imago" data="{pi.selectedItem.src}" horizontalAlign="center" left="22" right="208" top="10" bottom="40"/> <mx:DataGrid id="pi" dataProvider="{gal.lastResult.photos.imagen}" x="372" y="10" height="282" width="181"> <mx:columns> <mx:DataGridColumn headerText="{pi.selectedItem.photos.imagen.nombre}" dataField="titulo"/> </mx:columns> </mx:DataGrid> </mx:Panel> </mx:Application>