code: var xml = new ActiveXObject("Microsoft.XMLDOM");
var file = MsgPlus.ScriptFilesPath + '\\test.xml';
Debug.Trace(file);
xml.load(file);
Debug.Trace(xml.documentElement.selectSingleNode("Profiles/Profile").text);
Posts: 1622 Reputation: 50
36 / /
Joined: Jan 2006
RE: help!!! XML
This is because you are making it an attribute rather than text inside the node. Check out this site for more information on how to do the stuff you are after.