Hi:I am new to LiveCycle Designer. I am trying to use loadXML() to load
an external xml string like this: xfa.datasets.loadXML(xmlString, false,
false);then I use "xfa.resolveNode()" to parse it and it works fine.The
problem is that if I call loadXML() again passing a new xml string, I
still retrieve the first one. I guess "loadXML()" always appends the
incoming xml string to the current object model so it can't overwrite
the first one. So my question is that can you unload the xml so that you
c...