辅助功能 API - 将键盘焦点设置到特定元素

发布于 2024-08-18 14:20:52 字数 247 浏览 14 评论 0原文

使用辅助功能 API,我深入研究一系列元素并找到我感兴趣的特定 AXUIElementRef(全部在外部应用程序中)。如何检查该元素当前是否具有键盘焦点?如果没有,我该如何设置?

类似于使用 AXUIElementSetAttributeValue 将 kAXMainAttribute 设置为 true(这适用于窗口 - 感谢 Peter!)。

PS - 我尝试过 kAXFocusedAttribute,似乎没有完成这项工作。也许它是只读的?

Using the accessibility API, I am drilling down through a series of elements and finding a specific AXUIElementRef I am interested in (all in an external application). How do I check if this element currently has keyboard focus? And if not, how do I set it?

Something similar to using AXUIElementSetAttributeValue to set the kAXMainAttribute to true (this works for a window - thanks Peter!).

PS - I have tried kAXFocusedAttribute, doesn't seem to do the job. Maybe it's read only?

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

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

发布评论

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

评论(1

听,心雨的声音 2024-08-25 14:20:52

PS - 我尝试过 kAXFocusedAttribute,但似乎不起作用。也许它是只读的?

恰恰相反。阅读标题:

可写吗?是的,对于任何可聚焦的元素。在所有其他情况下都不会。

在您在窗口焦点(通过将 kAXFocusedAttribute 设置为 true)。

PS - I have tried kAXFocusedAttribute, doesn't seem to do the job. Maybe it's read only?

Quite the opposite. Read the header:

Writable? Yes, for any focusable element. No in all other cases.

Make sure you've activated the application (by setting its kAXFrontmostAttribute to true) and made the window key (by setting its kAXFocusedAttribute to true) before you give a control in the window focus (by setting its kAXFocusedAttribute to true).

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