Error en la ruta del archivo en Applescript / TextExpander

1

Utilizo el siguiente código para abrir mi carpeta de Dropbox rápidamente usando textexpander.

tell application "Finder"
    activate
    set f to POSIX file "/Users/MrT/Dropbox"
    open f
end tell

Lo que funciona, pero luego quiero profundizar en mis carpetas con este código. No funciona. Parece que Textexapnder no reconoce espacios en 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
    
pregunta Conrad C 21.10.2013 - 18:09

1 respuesta

1

Puede que esté totalmente fuera de lugar, pero inténtalo:

tell application "Finder"
    activate
    set f to "Users/MrT/Dropbox/School/Hardvard/6-Fall Session 2013"
    set a to POSIX file f
    open a
end tell

Si eso no funciona, cámbielo a lo siguiente:

tell application "Finder"
    activate
    set f to "Macintosh HD:Users:MrT:Dropbox:School:Hardvard:6-Fall Session 2013"
    set a to POSIX file f
    open a
end tell
    
respondido por el Danijel-James W 23.10.2013 - 09:38

Lea otras preguntas en las etiquetas