Cocoa Scripting Bridge 和元素

发布于 2024-09-03 03:31:03 字数 287 浏览 10 评论 0原文

因此,我尝试编写脚本的应用程序有一个脚本定义文件,其中包含元素,它是一个“隐式指定的容器”。

问题是,如何使用 Scripting Bridge 获取该元素内部的内容?或者,我如何发送检索它所需的 Apple 事件,然后将我得到的内容转换回 SBObject?

我已经尝试过:

[document nameOfKey]
document.nameofKey
[document contents]
document.contents

So, the application I'm trying to script has a scripting definition file that includes a <contents> element, which is an "implicitly specified container."

The question, how do I get at what's inside this element using Scripting Bridge? Or alternatively, how do I send the Apple Event necessary to retrieve it and then transform what I get back into an SBObject?

I already tried:

[document nameOfKey]
document.nameofKey
[document contents]
document.contents

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

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

发布评论

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

评论(1

浅紫色的梦幻 2024-09-10 03:31:03

不确定这是否有帮助,但我注意到有时您必须使用关键字“get”才能实际获取某些内容,然后才能访问它的其他部分。所以我会尝试这个...

[[document get] contents]
[[document contents] get]

等等。请注意,“get”是 SBObject 的实例方法,因此您可以在文档中找到它。

Not sure if this will help but I noticed that sometimes you have to use the keyword "get" in order to actually get something before you can access other parts of it. So I would try this...

[[document get] contents]
[[document contents] get]

etc. Note that "get" is an instance method of SBObject so you can find it in the docs.

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