Reputation: 209
I think my problem is the spaces in the file path. But I can't get it to work.
Here is the folder path I want to open: /Users/username/Library/Speech/Speakable Items
Upvotes: 1
Views: 8344
Reputation: 212979
Assuming your path is correct it would be:
tell application "Finder"
open ("/Users/username/Library/Speech/Speakable Items" as POSIX file)
end tell
Upvotes: 3