RE: [flexcoders] XMLList to ArrayCollection

2008-08-21 Thread Gordon Smith
Subject: RE: [flexcoders] XMLList to ArrayCollection Sure, but you have to do it manually. Loop over the nodes, then use the attributes() to loop over the attributes. If I recall correctly, attribute[n] will give you the attr value, and attribute[n].name() will give you the attr name. XML.name

RE: [flexcoders] XMLList to ArrayCollection

2008-08-21 Thread Tracy Spratt
Sure, but you have to do it manually. Loop over the nodes, then use the attributes() to loop over the attributes. If I recall correctly, attribute[n] will give you the attr value, and attribute[n].name() will give you the attr name. XML.name() (or localName()) will give you the name of the node.