有人知道如何使用 AppleScript 在邮件应用程序中使用搜索栏吗?我想使用邮件应用程序中的搜索栏自动搜索主题(而不是搜索整个邮件)的过程。由于我想搜索所有邮箱(除了收件箱,还有其他智能邮箱),我不能使用常用的方法,即设置邮箱然后遍历里面的所有邮件。谢谢你的帮助。
问问题
1076 次
2 回答
2
您可以使用一种称为 GUI 脚本的技术,它使您能够直接处理 ui 小部件并使用它们执行操作。
试试这个脚本:(将搜索文本更改为您需要的内容)
activate application "Mail"
tell application "System Events"
tell process "Mail"
tell window 1
set search_text_field to text field 1 of the last group of tool bar 1
tell search_text_field
set the value of attribute "AXValue" to "subject:congratulations"
key code 36 -- press RETURN key
end tell
end tell
end tell
end tell
(它适用于 10.7,可能不适用于更新的操作系统)
于 2014-02-28T09:58:46.640 回答
0
对我来说,这在优胜美地不起作用。我使用了这个解决方法:
activate application "Mail"
tell application "System Events"
tell process "Mail"
tell window 1
keystroke "f" using {command down, option down}
keystroke *your variable* as string
end tell
end tell
end tell
于 2017-04-07T09:02:55.500 回答