Posts: 1819 Reputation: 74
36 / /
Joined: Mar 2004
RE: XML Saving and loading?
script
code:var xml = new ActiveXObject("Microsoft.XMLDOM");
var file = MsgPlus.ScriptFilesPath + '\\settings.xml';
xml.load(file);
var node = xml.selectSingleNode("/Information/name");
node.text = "test";