gpt4 book ai didi

macos - AppleScript:循环应用程序窗口;将每个放在前面并触发其他应用程序中的操作?

转载 作者:行者123 更新时间:2023-12-05 03:59:47 39 4
gpt4 key购买 nike

精简版

我想编写一些 AppleScript,它遍历应用程序的(非最小化的)窗口,并为每个窗口将其置于最前面,并触发另一个应用程序 BTT(将移动窗口)中的某些内容。目的是将应用程序的所有窗口移动到同一个地方。移动部分由(BTT)处理,我只需要帮助所有应用程序的窗口。

长版

(这个问题涉及 BetterTouchTool,但它并不是真正的那个 - 我认为 - 我怀疑你不需要了解任何关于 BTT 的知识就可以回答......)

我正在尝试编写一个 AppleScript 脚本(当我将其归结为可能的最简单版本时)激活某个应用程序,并循环遍历其所有窗口,为每个窗口触发 BetterTouchTool“命名触发器”。命名触发器的工作是将当前窗口移动到某个位置,但细节无关紧要。

我觉得这应该很简单,但我似乎无法找到正确的方法。我试过 cargo-culting 它但我没有得到任何结果(除了怀疑我需要涉及“系统事件”)......我是一个经验丰富的程序员但我从来没有深入到 AppleScript 和发现它做事的方式很奇怪/令人困惑。

到目前为止,我的工作是一个不会在窗口上循环的版本,所以它只会点击“第一个”(在某种意义上“第一个”,它似乎是“最近活跃的”这个应用程序”)。

例如,下面的作品。 (我在这里将它硬编码到 VSCode,尽管在我尝试编写的全部内容中,它遍历应用程序名称列表和为它们运行的​​触发器。)

on run
if application "Visual Studio Code" is running then
tell application "Visual Studio Code" to activate
tell application "BetterTouchTool"
trigger_named "Move window: monitor 4k: core"
end tell
end if
end run

这样会激活 VSCode,然后告诉 BTT 运行命名触发器以将当前窗口移动到屏幕上的某个位置。结果是移动了最近使用的 VSCode 窗口。

好的,这是一个不错的开始,但我想为 所有 VSCode 窗口(或者理想情况下,当前可见桌面上的所有非最小化窗口)执行此操作。

BTT 的 AppleScript 界面似乎不支持针对特定窗口 - 它只适用于任何处于事件状态的应用程序/窗口,因此我需要以某种方式激活/将窗口置于最前面(?)然后调用 BTT 触发器。

我想我需要这样的东西(暂时忽略忽略最小化窗口的问题):

on run
if application "Visual Studio Code" is running then
tell application "Visual Studio Code" to activate
repeat with app_window in windows
bring_window_to_front()
tell application "BetterTouchTool"
trigger_named "Move window: monitor 4k: core"
end tell
end repeat
end if
end run

...我不知道如何执行 bring_window_to_front() 部分!

(这里也没有考虑:其他桌面;但我认为我可以没有它。)

有人能指出我正确的方向吗?感谢所有帮助!

总结

我想:

  • 给定一个由给定名称标识的应用程序...
  • 获取它的所有窗口并循环遍历它们,对于每个窗口:
  • 激活/将该窗口置于最前面(前提是它没有最小化)并且...
  • 告诉 BetterTouchTool 使用给定名称运行触发器。

上下文

  • MacOS Mojave 10.14.5
  • BetterTouchTouch 3.072(我认为这没有任何区别)

最佳答案

任何可编写脚本的应用程序——我假设“Visual Studio Code”是可编写脚本的(有一个脚本字典)来自你编写的内容——应该响应此代码:

on run
if application "Visual Studio Code" is running then
tell application "Visual Studio Code" to activate
set wList to every window whose visible is true
repeat with app_window in wList
set index of app_window to 1
delay .5
tell application "BetterTouchTool"
trigger_named "Move window: monitor 4k: core"
end tell
end repeat
end if
end run
  • 第 4 行的 ... whose visible is true 部分排除了隐藏或最小化的窗口。
  • 第 6 行中的 set index of ... 命令将每个窗口循环到前面。

indexvisible 是所有 AppleScript 开发人员都应该实现的标准窗口属性的一部分,因此除非应用程序设计者是完全的业余爱好者,否则他们应该“只是工作”。 '查看脚本编辑器中的脚本字典以确保。有时 AppleScript 设计者添加有用的特殊命令,或更改标准属性的名称(可能只是为了烦人)。

我不确定是否需要第 7 行的 delay .5。我把它扔进去是为了过度确定窗口在 BTT 调用之前是最前面的。

除非应用不可编写脚本,否则不要使用 GUI 脚本或系统事件。 GUI 脚本在需要 时非常有用,但如果应用程序有脚本字典,使用它会更加高效和可靠。 GUI 脚本笨拙、缓慢,并且容易受到不可预测的中断的影响。但是如果你确实需要使用它,代码是类似的。

tell application "System Events"
tell process "Visual Studio Code"
set frontmost to true
set wlist to every window
repeat with aWindow in wlist
tell aWindow
perform action "AXRaise"
delay .5
tell application "BetterTouchTool"
trigger_named "Move window: monitor 4k: core"
end tell
end tell
end repeat
end tell
end tell

关于macos - AppleScript:循环应用程序窗口;将每个放在前面并触发其他应用程序中的操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56889874/

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