如何找到 OSX 应用程序的对象模型?
是否有关于每个 OSX 应用程序的对象模型的参考文档?我怎么知道finder有home属性而textedit有document属性? 有没有办法检查我可以与 applescript 使用的所有命令和事件?
Is there any reference documentation on the object model of every OSX application? How can I know that finder has an home attribute and textedit has a document attribute?
Is there a way to inspect all commands and events I can use with applescript ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将应用程序拖放到(Apple)脚本编辑器上以查看字典。使用 appscript,您还可以生成 HTML 格式文档。
You can drop the application onto (Apple)Script Editor to view the dictionary. With appscript you can also generate HTML format documentation.
如果您已经在 AppleScript 编辑器中,还可以选择“文件”>“打开词典”(Cmd-Shift-O) 以查看打开的应用程序的词典。 脚本调试器有一个附加功能,它将在子菜单顶部附近组织正在运行的应用程序易于选择。
If you're already in AppleScript Editor, you can also select File>Open Dictionary (Cmd-Shift-O) to see a open an application's dictionary. Script Debugger has an additional feature where it will organize running applications near the top of a submenu for ease of selection.