从 Cocoa 应用程序运行 Applescript

发布于 2024-09-08 11:58:13 字数 124 浏览 1 评论 0原文

我想在可可应用程序中运行一个简单的苹果脚本。我阅读了有关此事的苹果文档,但这对我(初学者)来说太混乱了,无法理解。

tell application "iTunes" to play

I want to run a simple applescript in a cocoa application. I read the apple documentation on the matter but it was too confusing for me (a beginner) to understand.

tell application "iTunes" to play

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

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

发布评论

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

评论(1

最丧也最甜 2024-09-15 11:58:13

根据 文档,您使用 NSAppleScript 类。

非常短的 API 参考中有一个名为“初始化脚本”的部分,其中一个方法是 -initWithSource:,它采用 NSString。您将通过这种方式创建您的对象。

获得脚本对象后,您可以将 -compileAndReturnError: 然后 -executeAndReturnError: 作为单独的步骤,或者只是 -executeAndReturnError:,这- 根据该方法的文档 - 如果尚未编译源代码,则尝试首先编译源代码,然后执行。

因此,从理论上讲,您可以在一行中完成所有这些操作。 (alloc、init...、autorelease、executeAndReturnError:) 如果你像顽皮的开发人员一样忽略错误。

请注意警告,NSAppleScript 只能从主线程执行(即不能从 NSOperation/Queue 或其他线程执行)。


Per the documentation, you use the NSAppleScript class.

The very short API reference has a section called "Initializing a Script," one method of which is -initWithSource:, which takes an NSString. You'll create your object this way.

Once you have your script object, you can then either -compileAndReturnError: then -executeAndReturnError: as separate steps, or just -executeAndReturnError:, which - according to the documentation for that method - tries to compile the source first if it's not been already, then executes.

So, in theory, you could probably do all this in one line. (alloc, init..., autorelease, executeAndReturnError:) if you ignore errors like a naughty developer.

Note the warning that NSAppleScript can only be executed from the main thread (ie, not from an NSOperation/Queue or other threads).


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