MacRuby ScriptingBridge 加载速度
有没有更快的方法从 MacRuby 加载脚本桥应用程序?
当我为 Adobe InDesign 制作 SBApplication 对象时,加载时间超过 10 秒。这是我一直在使用的代码:
framework 'ScriptingBridge'
indesign = SBApplication.applicationWithBundleIdentifier("com.adobe.InDesign")
puts indesign
当然,生成的头文件对于 InDesign 来说是巨大的...有没有办法强制使用支持文件?
Is there a faster way to load scripting bridge applications from MacRuby?
When I make the SBApplication object for Adobe InDesign it takes more than 10 seconds to load. Here's the code I've been using:
framework 'ScriptingBridge'
indesign = SBApplication.applicationWithBundleIdentifier("com.adobe.InDesign")
puts indesign
Of course the generated header file is huge for InDesign... Is there a way to force the use of a support file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ScriptingBridge 时加载时间较长是一个已记录的问题。另一种选择是 macruby-appscript。
The large load time when using ScriptingBridge is a documented issue. An alternative is macruby-appscript.