0

を使用して、通知イベント OS X 10.9 Maverickを書き込もうとしています。AppleScript

このコードを使用して、タイトルとサブタイトルを正常に送信しました。

set emailFrom to "Johnny Appleseed"
set emailTitle to "The Email Subject"
set emailMessage to "Hello, this is a test"

display notification with title emailFrom subtitle emailTitle

emailFrom、emailTitle、および emailMessage を表示しようとしているので、次のようにフォーマットされています。 ここに画像の説明を入力

AppleScript 通知センターのドキュメントでは、タイトルとサブタイトルについてのみ説明しています。

ディスプレイ通知に追加しようとしmessageましたが、うまくいきませんでした。

set emailFrom to "Johnny Appleseed"
set emailTitle to "The Email Subject"
set emailMessage to "Hello, this is a test"

display notification with title emailFrom subtitle emailTitle message emailMessage

通知に「メッセージ」部分を追加するにはどうすればよいですか?

4

1 に答える 1

7

このようにしてみてください:

display notification "Notification Text" with title "Title" subtitle "SubTitle"

=>

set emailFrom to "Johnny Appleseed"
set emailTitle to "The Email Subject"
set emailMessage to "Hello, this is a test"

display notification emailMessage with title emailFrom subtitle emailTitle
于 2013-11-08T16:20:50.473 に答える