Hi there !
I would like to use xml file in order to translate a game.
<?xml version="1.0" encoding="UTF-8" ?>
<root>
<lang pays="FRA">
<value id="tree">arbre</value>
<value id="house">maison</value>
</lang>
<lang pays="US">
<value id="tree">tree</value>
<value id="house">house</value>
</lang>
</root>
Easy, it works fine on Firefox and Chrome, but not on IE (I have IE 10 for information) ! XML.nodeCount find the node (root/lang[FRA]/value[tree] for example), but XML.StringValue return nothing. I don't understand. Maybe it's a bug ? Or a bad encoding (I tested a lot of them of course) ? Help ! :)
Here is a simple capx file to illustrate my problem : http://dl.dropbox.com/u/15473488/xml_and_ie.capx
Run it on IE!
Thanks,
Sylvain.