I have this XML that shows some data from mysql database.I need to pull some of those data (i.e. Name, Price, etc) from the xml and show them in the Flash application.Now, I can pull the images and display them in the flash but I have problem displaying the texts from the xml into the flash.This is the structure of my xml:\[code\]<Data><ID>127</ID><Name>Example 1</Name><Price>12!!</Price><Image>inventory_images/127.jpg</Image><Date>Mar 08, 2013</Date></Data>\[/code\]and this the code (Flash AS3) that will display the image of the product in the flash.\[code\]stop();import flash.display.Loader;import flash.events.Event;import flash.net.URLRequest;var xmlLoader:URLLoader;var xml:XML;var xmlList:XMLList;var uRequest = new URLRequest("PATH-TO-MY-XML-FILE");xmlLoader = new URLLoader(uRequest);xmlLoader.addEventListener(Event.COMPLETE, onXMLLoad);var imgLoader:Loader;function onXMLLoad(e:Event) { xml = new XML(e.target.data); imgLoader = new Loader(); imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImgLoaded); imgLoader.load(new URLRequest(xml.Data.Image.text()[0]));}function onImgLoaded(e:Event) { addChild(imgLoader); imgLoader.height = 300; imgLoader.width = 300;}\[/code\]could someone please help me out with this?Thanks in advance.