我有这个简单的AppleScript,它接收剪贴板中的文本并输出使用的单词和字符的数量。
我要做的是将“显示对话框”传递给Growl或growlnotify。我知道如何在shell中使用growlnotify - 它非常棒且可高度自定义(粘贴便笺,指定应用程序图标或图像等) - 但重点是:我不知道如何在AppleScript中执行此操作。我谷歌了一下,但现在时间过去了,我决定在这里发表我的问题。
所以,这是脚本:
set myCount to count (the clipboard)
set myWords to count words of (the clipboard)
set myParas to count paragraphs of (the clipboard)
display dialog "Characters: " & myCount & "
Words: " & myWords & "
Paragraphs: " & myParas
谢谢。