Issue with XML spitting out backwards

Hey,

I’ve been basing my current project off of the “Best Flash Structure” tutorial and i’ve ran into an issue.

Rather then using one image for my menu i’ve been using a .png of the actual text, however, for some reason the <image> node of the xml file is displaying out backwards.

So if in the file it were:

<btn>
<image>hi.png</image>
<link>hi.swf</link>
</btn>
<btn>
<image>hello.png</image>
<link>hello.swf</link>
</btn>

hello would be the first displayed then hi. So i put them in the xml file backwards, this fixed the image problem however the link node was now messed up. In the actual xml file there are several nodes for each button and the image node, which is the firstChild is always messed up. Everything else will trace out to it’s correct value, even the images traces out in proper order. However when displayed, it is backwards.

Any suggestions?

Thanks in advance.