Yo uso el siguiente código para abrir mi carpeta de dropbox de forma rápida con textexpander.
tell application "Finder"
activate
set f to POSIX file "/Users/MrT/Dropbox"
open f
end tell
Que funciona, pero luego quiero ir más profundo en mis carpetas usando este código. No funciona. Parece Textexapnder no reconoce espacios en las rutas de archivos.
tell application "Finder"
activate
set f to POSIX file "/Users/MrT/Dropbox/School/Hardvard/6-Fall Session 2013"
open f
end tell