消息applescript在Mountain Lion下不起作用?


1

在服务器上的“消息”中发送或接收消息时,尝试添加AppleScript以运行特定命令,但是由于某种原因,它似乎从未被调用。

首先将其放置在中~/Library/Scripts/Applications/Messages,然后放置在中~/Library/Application Scripts/Messages,但似乎都无法使用。但是,当我前面有消息时,它显示在AppleScript菜单的底部。

这是测试脚本:

using terms from application "Messages"
    on message sent theMessage for theChat
        display dialog "Triggered on message sent"
    end message sent
    on message received theMessage from theBuddy for theChat
        display dialog "Triggered on message received"
    end message received
end using terms from

知道为什么这些都不触发吗?

Answers:


1

我认为Applescript必须在“偏好设置”>“警报”中调用。选择一个事件,然后选择“运行Applescript脚本:”

看看是否有帮助。


效果很好!那么这是它始终与Messages一起工作的方式吗(默认情况下它不会触发这些脚本),还是Mountain Lion有所改变?
Christian A.Strømmen2013年

据我所知,它一直都以这种方式工作,但我想不起。
玉米饼
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.