如何在 AppleScript 的 NSPreferencePane 中设置锚点

发布于 2024-12-05 09:33:41 字数 334 浏览 0 评论 0原文

我想通过 AppleScript 访问我自己的首选项窗格中的某个 tabView 项目,如下所示:

tell application "System Preferences"
    reveal anchor "Firewall" of pane id "com.apple.preference.security"
end tell

有没有办法在 Interface Builder (或代码中)中设置锚点名称,以便我可以在我自己的首选项中访问某个“锚点”通过 AppleScript 窗格,就像在 com.apple.preference.security 首选项窗格中一样???

I'd like to access a certain tabView item in my own pref pane via AppleScript like that:

tell application "System Preferences"
    reveal anchor "Firewall" of pane id "com.apple.preference.security"
end tell

Is there a way to set the anchor names in Interface Builder (or in code) that I can access a certain "anchor" in my own pref pane via AppleScript like in the com.apple.preference.security pref pane???

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

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

发布评论

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

评论(1

ぇ气 2024-12-12 09:33:42

这有效...

tell application "System Preferences"
    activate
    tell pane id "com.apple.preference.security" to reveal anchor "Firewall"
end tell

This works...

tell application "System Preferences"
    activate
    tell pane id "com.apple.preference.security" to reveal anchor "Firewall"
end tell
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文