I need to fill an ArrayCollection from XML object. I have my result event which returns string with xml structure:
<NFS> - <Trade> <OrNo>0000000Y</OrNo> <Date>6/10/2008 6:25:00 AM</Date> <IP>xx.xxx.xx.xx</IP> <Ex>CBOT-A</Ex> <A>Add</A> <Trd>xxx</Trd> <W2G>15</W2G> <W2E>15</W2E> <G2E>0</G2E> </Trade> </NFS> For example this is how I am filling my XML object: var xml:XML = new XML(event.result); Then I need to fill my array collection and even though I tried everything possible I could think of no success. I tried that with no success: var tmpData:ArrayCollection = xml.NFS.Trade; Anyone who can help??? Thanks in advance.

