gpt4 book ai didi

macos - Applescript 或 Automator 在 Outlook Mac 2011 中应用规则

转载 作者:行者123 更新时间:2023-12-03 21:00:33 25 4
gpt4 key购买 nike

我有一个本地邮件规则,我想按计划应用。要手动应用所有规则,我可以单击消息菜单 -> 规则 -> 应用 -> 全部应用。

有没有办法用 Applescript 自动执行此操作?我查看了 Outlook 词典,没有找到任何与规则相关的操作。

或者,有没有办法用 Automator 做到这一点?

最佳答案

可以通过 GUI 脚本来解决,以使用系统事件应用程序来模拟单击菜单项。

您最终会得到很长的菜单引用,但它确实有效。

编辑:我添加了如何确保首先选择收件箱。

tell application "Microsoft Outlook"
activate
if main windows is {} then -- no windows open
make new main window
end if

tell main window 1 to set view to mail view -- ensure its viewing mail

set the selected folder to inbox
end tell

tell application "System Events"
tell process "Microsoft Outlook"
click menu item "Apply All" of menu 1 of menu item "Apply" of menu 1 of menu item "Rules" of menu 1 of menu bar item "Message" of menu bar 1
end tell
end tell

关于macos - Applescript 或 Automator 在 Outlook Mac 2011 中应用规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21975054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com