如何在 AppleScript 的 NSPreferencePane 中设置锚点
我想通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有效...
This works...