AppleScriptを使い他のアプリケーションの操作をする方法メモ。
テストした環境はMacOS 10.8。
アプリ起動
tell application "/Applications/Evernote.app"
activate
end tell
アプリが起動中かどうかの判定
if application "Evernote" is running then
"OK"
else
"NG"
end if
アプリ終了
tell application "Evernote"
quit
end tell