如何确定程序在桌面上的窗口索引位置?

发布于 2024-11-09 14:11:07 字数 43 浏览 0 评论 0原文

例如,如果我想知道前/活动窗口后面的窗口是什么,如何从窗口属性中获取它?

For example if I want to know what is window behind the front/active window, how do I grab it from the window properties?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杯别 2024-11-16 14:11:07

在应用程序内部:

tell application (path to frontmost application as text)
    item 2 of (windows whose visible is true)
end tell

但是据我所知,如果第二个窗口位于另一个应用程序中,则无法执行此操作。 (除了诉诸黑客,例如模拟用于将焦点移至活动窗口或下一个窗口的快捷方式。)

Inside an application:

tell application (path to frontmost application as text)
    item 2 of (windows whose visible is true)
end tell

But AFAIK there's no way to do it if the second window is in another application. (Besides resorting to hacks like emulating the shortcut used for Move focus to active or next window.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文