Hi,
I know enough object oriented programming to be dangerous but that's all. I'm trying to programmatically write to multiple files using Brightscript. What I'd like to do is open multiple files and write several strings to each one. Something like this:
file[index] = CreateObject(roCreateFile, "filename[index]")
fileWriter[index] = CreateObject(roReadWriteFile, "filename[index]")
and then use the fileWriter objects to write various strings to each of the files using .SendLine.
How do I do that in Brightscript?
Thanks,
Tony