在服务器上的“消息”中发送或接收消息时,尝试添加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
知道为什么这些都不触发吗?