2011年9月8日木曜日

【AppleScript】ダイアログボックスを出す。

AppleScriptでダイアログボックスを出す。
あると便利だったりするのでメモ。

on run ARGV
tell application "Finder"
activate
set msg to item 1 of argv
display dialog msg
end tell
end run

コマンドラインで実行権限を与えてあげる

chmod +x alert.applescript

実行

osascript alert.applescript "Hello world"


結果

0 件のコメント:

コメントを投稿