Ok, that makes sense. I have one more question, I hope you don't mind answering.
The reason I am getting the file-count variable was to dimension an array for each user with the number of files, each element of the array containing the URL to access each file. Now I realize what I need is a data structure like this:
[0] title, description, url
[1] title, description, url
[2] title, description, url
...
I think the roXMLList is the correct data structure to use, and perhaps all I need is to do something like this
xmlfileList=CreateObject("roXMLElement")
filelist=xmlFileList.Parse(xmlFileList)
and use the xml functions described in section 4.5:
fileTitle=FileList.user.title.GetText()
fileURL=FileList.user.url.GetText()
fileDescription=FileLIst.user.description.GetText
and then call a subroutine or function to display the info and play that file
Would that be accurate syntax (leaving out any tests to make sure the data is valid)
Thanks
- Joel