有人知道如何使用AppleScript在Mail应用程序中使用搜索栏吗?我想使用邮件应用程序中的搜索栏自动搜索主题(而不是搜索整个邮件)的过程。由于我想搜索所有邮箱(收件箱除外,还有其他智能邮箱),我无法使用常用方式,即设置邮箱然后查看其中的所有邮件。谢谢你的帮助。
答案 0 :(得分: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适用于我,可能不适用于最近的操作系统)
答案 1 :(得分: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