View Single Post
Old 02-09-2011, 10:32 PM   PM User | #2
iSynapps
New to the CF scene

 
Join Date: Jan 2011
Location: Germany
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
iSynapps is an unknown quantity at this point
If you want to work with the items on your XML, you should do this
Code:
LIST
<?xml version="1.0" encoding="utf-8"?>
<list>
  <folder label="Men">
    <subfolder label="Top">
      <item label="some title" id="00XXX" size="90".../>
    </subfolder>
  </folder>
</list>

EVENT.COMPLETE
var result:XMLList = new XMLList(XML(e.target.data)..folder);
iSynapps is offline   Reply With Quote