read config.opml file

this file config.opml

<?xml version="1.0" encoding="ISO-8859-1"?> as to obtain the result marked in red

Assuming you’ve read the XML into a string called xml:

xmlel = CreateObject("roXmlElement")
xmlel.Parse(xml) 'should really check the return value to see if it parsed correctly
print xmlel.categories@startupscreen

-JT

good

	raw = ReadASCIIFile("pkg:/config.opml")
	opml = CreateObject("roXMLElement")
    opml.Parse(raw)
	print  opml.categories@StartupScreen