3. I would like to be able to open to that file in an explorer window (only needs to be windows, but a cross platform way would be great) by clicking on the file name in the search result window.
On windows you can use this:
set the hideConsoleWindows to true
get shell(format("explorer.exe /root,\"%s\" ", pPath))Where pPath is the path to your file. You will need to escape characters in the path. I *think* for windows you need to do the following. Someone correct me if I'm wrong.
replace "/" with "\" in pPath --> CHANGE REV PATH DELIMITERS TO WINDOWS
replace "&" with "^&" in pPath
replace "|" with "^|" in pPath
replace "(" with "^(" in pPath
replace ")" with "^)" in pPath
-- Trevor DeVore Blue Mango Multimedia [EMAIL PROTECTED]
_______________________________________________ use-revolution mailing list [email protected] http://lists.runrev.com/mailman/listinfo/use-revolution
