- Points
- 509
- Digest
- 0
- R.P.
- 50
- Joined
- 2011-5-28
- Last visit
- 2013-2-15
- Posts
- 58

|
Another issue:
Code:
var dict = parsexml("xmlfile.xml",1);
trace(dict);
trace(dict.keys());
Xml File:
<begin>
<inner>
<a>1</a>
<b>2</b>
</inner>
</begin>
When I run the code dict.keys() gives only "begin" as the key (refer to the attached output). Shouldn't it be shwoing all the keys ["begin","inner","a","b"] ?? How can we get the values of a and b directly?
|
Attachment: You need to Login to download attachments. No account? Register
|