指定のフォルダを開くAppleScriptです。
今回は、書類フォルダ(ドキュメント)を開く内容です。
tell application "Finder"
activate
--新しい(アプリケーション)フォルダを開く
open folder "Macintosh HD:Users:username:Documents"
end tell
AppleScriptはAutomaterの中でも使用できるので、覚えたらとても便利です。
Script文中の「username」はご自身のものを入れてくださいね。
便利なAppleScriptはメモしていこう。