Newbie: How to open a mounted volume in the Finder

Hi all,

This is a very basic question. I just want to excecute a script from the terminal that will open a folder based on the folders full path name. For example

osascript -e ‘tell application “Finder” to Open Folder “MountedVolume:Folder:SubFolder”’

I basically don’t know how to specify a root level directory. Everything seems to be based on the startup disk - for example
tell application “Finder” to Open Folder “Users:”
works, but what if I want to open a folder that is on another drive or a mounted volume.

Thanks,
dave

Never mind. I found it. I just hit the record button in the Script Editor.
All I had to do was add "of Disk “OtherMountedVolume:”

dave