Hi i am trying to load an xml and parse it to show a list of videos i get this error> *** ERROR: Invalid path: ’
this is my code
http = CreateObject("roUrlTransfer")
http.SetUrl("http://roku.jjtdigital.net/salvation_army2/videos.xml")
xml=http.GetToString()
rsp=CreateObject("roXMLElement")
IF rsp.Parse(ReadAsciiFile(xml))
?"XML PARASED. . ."
m.options = []
videoinfo = []
For i= 0 to xml.video.count()-1
videoinfo={
Title: xml.video[i].title.GetText()
}
m.options.Push(videoinfo)
End For
?"PROGRAMLIST CREATED. . ."
?"PROGRAMLIST COUNT. . ."m.options.count()
else
?"DIDN'T PASS. . ."
END IF
