gpt4 book ai didi

google-chrome - Applescript - Google Chrome 激活某个窗口

转载 作者:行者123 更新时间:2023-12-02 20:44:06 25 4
gpt4 key购买 nike

你们知道如何使用 Applescript 激活第 n 个 Google Chrome 窗口吗?例如,如果我打开了三个 Google Chrome 窗口,如何激活第二个窗口?

我尝试了许多不同的组合,例如:告诉窗口 2 的选项卡 3 激活

我还注意到:

告诉应用程序“Google Chrome” 告诉窗口 1 激活结束告诉

并且,

告诉应用程序“Google Chrome” 告诉窗口 2 激活结束告诉

产生相同的结果,它只激活最后一个窗口打开了,这是bug吗?

提前致谢:)

最佳答案

tl;博士

使用set index of window <n> to 1并不完全有效,因为它并没有真正激活窗口 - 但它确实使其可见

解决方法(示例假设您要激活窗口 2):

  • Yar's answer提供了一种实用的解决方法,尽管尚不完全清楚为什么它有效。但是,它确实具有要求调用应用程序为 authorized for assistive access 的优点。 ,与以下解决方案不同。

  • user495470's answer暗示了一个健壮且通用的解决方案,该解决方案也适用于非 AppleScriptable 应用程序:

    tell application "System Events" to tell process "Google Chrome"
    perform action "AXRaise" of window 2
    set frontmost to true
    end tell
  • 或者,使用下面定义的 AppleScript 处理程序,如下所示:

    • tell application "Google Chrome" to my activateWin(it, window 2)
<小时/>

同时adayzdone's answer 应该工作并且几乎工作,但有一个问题 - 这可能是也可能不是问题(在 Mountain Lion 上的 Chrome 21.0.1180.89 上观察到)[更新:自 OSX 10.11.2 上的 Chrome 47.0.2526.106 起仍然适用]:

虽然解决方案会将所需窗口显示为前窗口,但如果之前有其他窗口处于事件状态,Chrome 不会将其视为前窗口。您可以通过非事件的关闭/最小/缩放标题栏按钮、复选标记旁边的窗口标题以及键盘快捷键(例如Cmd-L)来判断。将不会应用于所需的窗口。

如果您的下一个操作是单击窗口上的某处,这可能不是问题,因为这样的单击将完全激活所需的窗口。

否则,您可以采用相当强大的 GUI 脚本解决方法(改编自通用解决方案 here):

更新:遗憾的是,未实际激活索引设置为 1 的窗口的问题似乎会影响所有应用程序(在 OS X 10.8.3 上遇到过)。这是一个使用 GUI 脚本正确激活给定 AppleScriptable 应用程序中给定窗口的通用函数

# Activates the specified window (w) of the specified AppleScriptable
# application (a).
# Note that both parameters must be *objects*.
# Example: Activate the window that is currently the 2nd window in Chrome:
# tell application "Google Chrome"
# my activateWin(it, window 2)
# end tell
on activateWin(a, w)
tell application "System Events"
click menu item (name of w) of menu 1 of menu bar item -2 ¬
of menu bar 1 of process (name of a)
end tell
activate a
end activateWin

附带说明一下,OP 尝试过什么 - 例如 activate window 1 - OS X 10.8.3 上的所有应用程序似乎都被破坏了 - 当底层应用程序被激活时,窗口规范。被忽略。

这是原始的、更具教学性的代码:

tell application "Google Chrome"
# Each window is represented by the title of its active tab
# in the "Window" menu.
# We use GUI scripting to select the matching "Window" menu item
# and thereby properly activate the window of interest.
# NOTE: Should there be another window with the exact same title,
# the wrong window could be activated.

set winOfInterest to window 2 # example
set winTitle to name of winOfInterest

tell application "System Events"
# Note that we must target the *process* here.
tell process "Google Chrome"
# The app's menu bar.
tell menu bar 1
# To avoid localization issues,
# we target the "Window" menu by position - the next-to-last
# rather than by name.
click menu item winTitle of menu 1 of menu bar item -2
end tell
end tell
end tell
# Finally, activate the app.
activate
end tell

关于google-chrome - Applescript - Google Chrome 激活某个窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10366003/

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