Hello everyone,
I did a couple of searches in the SDK, around the forum, and using Google, but cannot find the sample application: usbplayer. Where can I find this sample application?
I'm hoping to look at the sample to solve an error that I'm getting.
In case anyone has came across this, does anything know why I'm getting the following error message in the console?
BRIGHTSCRIPT: ERROR: roFilesystem: no plugin instance available:
The error happens on calling getVolumeList() below:
function createVolumeContentNode()
fs = createObject("roFileSystem")
volumesList = []
for each vol in fs.getVolumeList()
kv0 = CreateObject("roAssociativeArray")
kv0.AddReplace("TITLE", vol)
kv0.AddReplace("HDLISTITEMICONURL","")
kv0.AddReplace("HDLISTITEMICONSELECTEDURL","")
volumesList.Push(kv0)
end for
return createContentNode(volumesList)
end function
Thanks!