4

有了 OSX Mavericks,我们现在可以很容易地用 applescript 制作通知。但是,似乎没有办法将出现的图标更改为自定义图标。有没有办法做到这一点?

4

2 回答 2

4

display notification将采用应用程序图标。您可以在 applescript 应用程序的 bunlde 内容中设置图标。

set fileName to choose file "Select a Folder"
display notification "Parag Bafna" subtitle "Its working" & fileName

在此处输入图像描述

display notification    text    required
with title  text    optional
subtitle    text    optional
sound name  text    optional
于 2013-10-28T15:36:06.390 回答
1

您只需更改脚本/应用程序本身的图标即可更改图标。将您想要的图片复制为图标(⌘ + C),右键单击您保存的应用程序/脚本文件,“获取信息”,单击左上角的文件图标,粘贴(⌘ + V)。如果您保存为脚本包,您还可以将包中的 icns 文件交换为您自己的(在 Resources 文件夹中)。

于 2015-12-03T05:14:13.237 回答