XML/XPath Data Type Issue

ok this is starting to bug me…

Basically, I’m loading my XML data into flash then parsing it using XPath so I can easily access node based on the their name etc.

structure is like this:

<doc>
<section1>
<info></info>
<info></info>
</section1>
<section2>
<info></info>
<info></info>
</section2>
<section3>
<info></info>
<info></info>
</section3>
etc… etc…
</doc>

I loop through and create arrays for all the sections attributes and info values sorta like so:

[COLOR=BLUE][SIZE=1]tempNumExtraImagesArray[x] = XPath.selectNodes(this,"/string/cell"+x+"/num_extra_photos/text()");[/SIZE][/COLOR]

this succeeds in grabbing the values but when I go to evaluate this array later in the loop, like this:

[COLOR=BLUE][SIZE=1]if(tempNumExtraImagesArray[x] > 0){
trace(“somethingorother”);
}[/SIZE][/COLOR]

it chokes!

I’ve tried forcing the array values to numbers like so:

[COLOR=BLUE][SIZE=1]tempNumExtraImagesArray[x] = Number(XPath.selectNodes(this,"/string/cell"+x+"/num_extra_photos/text()"));[/SIZE][/COLOR]

and when I trace the array it pumps out NaN. Maybe I’ve been staring at the screen too long but it’s driving me nuts. If anyone could shed some light it would help save what little hair I already have.

Thanks!