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?

link|improve this question

75% accept rate
This seems like a duplicate of stackoverflow.com/questions/8830436/… – Jake Mar 10 at 20:40
feedback

1 Answer

The large load time when using ScriptingBridge is a documented issue. An alternative is macruby-appscript.

link|improve this answer
Is there any way to load a support file or the headers before hand? – redman Feb 18 at 3:34
I'm not sure what you mean by before hand. The files will have to be loaded at some point. – j.tom.schroeder Feb 19 at 7:07
Before the script is run. I'm assuming each time it is run, the scripting bridge is generating whatever files it needs to communicate with the application. The time consuming part of the "loading" is either the generating or just getting it into memory? If you could generate them before hand it might load faster? – redman Feb 20 at 0:38
Have a look at gen_bridge_metadata. I've used it for frameworks, but it should also work for a set of headers. – j.tom.schroeder Feb 20 at 1:38
Appscript is effectively deprecated, so this isn't really a viable option. – Jake Mar 10 at 20:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.