Hi. I've got a Flex app that receives XML (resultFormat = "e4x") data
from a servlet in this format,
<premiums>
<premium id="ABCDEF01" startcount="0" currentcount="0">
<category>CD</category>
<description>The CD Description</description>
<image id="3095">
<filename>ABCDEF01__1225202763673.jpg</filename>
</image>
</premium>
<premium id="DEFGH01" startcount="0" currentcount="0">
<category>DVD</category>
<description>DVD Description</description>
<image id="3078">
<filename>DEFGH01__1225132169948.jpg</filename>
</image>
</premium>
</premiums>
I need to convert it to an ArrayCollection and then an array to
manipulate the results (using the slice method). Any solutions? Thanks.