使用applescript添加事件监听器

时间:2012-08-19 00:54:32

标签: macos applescript

我正试图对OSX Mountain Lion上的消息应用程序进行一些破解。我正在使用AppleScript,但我尝试的所有内容都没有为我工作..

这是我先试过的

using terms from application "Messages"
   on message sent theObject
        display "it worked!"
   end message sent
end using terms from

但是当我按下它时,它似乎只是立即退出程序。如何让它保持在监听器循环中?

1 个答案:

答案 0 :(得分:3)

我找到了这个问题的答案......我认为这完全不直观。 基本上,首先将脚本移动到~/Library/Scripts/Messages,然后在Messages中为事件创建警报并让事件调用脚本。