display notification 文字列1 [with title 文字列2] [subtitle 文字列3] [sound name 文字列4]
文字列1 | 表示する文 |
文字列2 | タイトル |
文字列3 | サブタイトル |
文字列4 | サウンド名 |
通知センターを使ってメッセージを表示する。
スクリプトの開始や終了を知らせる際に便利。
sound name
属性に指定するのは、"/System/Library/Sounds/"にあるファイルの名前。
拡張子は省略できる。
なお、存在しないサウンドを指定した場合はデフォルトの音が鳴る。
進捗状況を知らせる場合は、AppleScriptオブジェクトのprogress関連属性を使うと良い。
display notification "完了"" sound name "Bottle"
display notification "処理が終わりました" with title "完了"