display notification 文字列1
	[with title 文字列2]
	[subtitle 文字列3]
	[sound name 文字列4]

引数(Parameters)

文字列1表示する文
文字列2タイトル
文字列3サブタイトル
文字列4サウンド名

解説(Note)

 通知センターを使ってメッセージを表示する。
 スクリプトの開始や終了を知らせる際に便利。

 sound name属性に指定するのは、"/System/Library/Sounds/"にあるファイルの名前。
 拡張子は省略できる。
 なお、存在しないサウンドを指定した場合はデフォルトの音が鳴る。

 進捗状況を知らせる場合は、AppleScriptオブジェクトのprogress関連属性を使うと良い。

用例(Example)

  1. display notification "完了"" sound name "Bottle"
  2. display notification "処理が終わりました" with title "完了"