BrightScript Debugger> x = CreateObject("roXMLElement")
BrightScript Debugger> x.parse("<xml> foo <tag> bar </tag> qux </xml>")
BrightScript Debugger> ? x.genXML(false) 'before, the output of this was not right
<xml> foo <tag> bar </tag> qux </xml>
BrightScript Debugger> ? x.getText()
foo qux
BrightScript Debugger> ? x.getChildElements()
<Component: roXMLElement>
BrightScript Debugger> ? x.getChildNodes()
foo
<Component: roXMLElement>
qux
In fact I also want to know the same.
I am also facing a similar issue with XML Orphaned Text.
Kindly help me out too.