In addition or instead of exploring "My Computer", you could have an
item for selecting a mounted drive to use with menu folder. The item
would run a script, either from a separate file or by using *Exec
MoreCommandsAsScript.
Here is the script:
;Allmounted.powerpro
;by Sheri Pierce 10/1/2008
;tested with PProversion 4815
local gooddrives
local adrives=file.alldrives
for each line drive in adrives
if (mounted(drive))
gooddrives=gooddrives++drive++"\n"
endfor
local vmen=vec.createfromlines(gooddrives)
local x=vec.showmenu(vmen)
if (x>-1) do
local drive=vmen[x]
do("menu", "folder "++drive, "nosubdir folderstart Maxtext 32")
else
quit
endif