i'm connecting to a web service which is returning me some values as a string which i'm formatting to xml.
the node in question <StartValue>1454353543</St
artValue>
so just to check what's happening ....
counterStart = Number(dataNode.childNodes
[3].childN
odes[0]);
trace("get value " + dataNode.childNodes[3].chi
ldNodes[0]
); //output::: get value 150009980
trace(typeof counterStart);//output ::: number
trace(counterStart);//outp
ut ::: NaN
huh?
Start Free Trial