在 Mac 邮件规则中,我试图运行 javascript 而不是 applescript。这已在Mail Rules using JavaScript for Automation 而不是 AppleScript 中提出,但答案对我不起作用!
我试图尽可能地简化代码。因此,以下 AppleScript 可以正常工作:
on perform mail action with messages theMessages
say "running!"
end perform mail action with messages
但等效的 javascript 不起作用。
function performMailActionWithMessages(messages) {
app = Application.currentApplication()
app.includeStandardAdditions = true
app.say ("running")
}
编辑 这是我的规则参数