我正在寻找一种使用AppleScript的方法来选择/聚焦应用程序的特定窗口,而无需实际执行“激活”操作,该操作将所有窗口置于最前面。
这是我到目前为止的内容:
tell application "Google Chrome"
set windowTitle to title of first window whose title contains "whatever"
end tell
tell application "System Events" to tell process "Google Chrome"
click menu item windowTitle of menu 1 of menu bar item "Window" of menu bar 1
end tell
tell application "Google Chrome" to activate
问题是最后一行中的“激活”。那把所有东西都放在了前面,但是我只想要一个窗口。