So I'm getting data from an XML file which is automatically generated by an
asp.net page. I need to load the info into an array of simple objects in
flash. The xml nodes are not always all there but they are well defined.

<allcounts>
<TBL_GUI_COUNTS>
<ZONE>ZONE_2_H_DRAY_E</ZONE>
<COUNTS>0</COUNTS>
<UPDATE_DATETIME>2005-02-17T11:54:00.0000000-05:00</UPDATE_DATETIME>
</TBL_GUI_COUNTS>
<TBL_GUI_COUNTS>
<ZONE>X</ZONE>
<COUNTS>0</COUNTS>
<TERMINAL_ID>4</TERMINAL_ID>
<TERMINAL_NAME>CUT</TERMINAL_NAME>
<PORT_NAME>POLA</PORT_NAME>
<TOTAL_NR_CONTAINERS>0</TOTAL_NR_CONTAINERS>
<NR_CONTAINERS_HAZ>0</NR_CONTAINERS_HAZ>
<UPDATE_DATETIME>2005-02-17T11:54:00.0000000-05:00</UPDATE_DATETIME>
</TBL_GUI_COUNTS>
</allcounts

I just want to load a number of the nodes called TBL_GUI_COUNTS into an array
of objects which are just name, value pairs (ie COUNTS:0). I've got the xml
connector working and it will fill a datagrid but that's not what I need. Any
help?