how can I generate scripting bridge files at runtime? I want to use scripting bridge to quit an appliction, but that application is not known at compile time.

link|improve this question
feedback

2 Answers

From the documentation:

To create a header file, you need to run two command-line tools—sdef and sdp—together, with the output from one piped to the other. This is the recommended syntax:

sdef /path/to/application.app | sdp -fh --basename applicationName

link|improve this answer
feedback

Scripting Bridge is a compile-time technology. You may be able to generate the header at run-time, but what good would that do to your compiled application?

Try with AppleScript:

NSString* script = [NSString stringWithFormat: @"tell application \"%@\" to quit", appName];
NSAppleScript* as = [[[NSAppleScript alloc] initWithSource: script] autorelease];
[as executeAndReturnError: nil];

Given an app name appName, you should be able to send it a quit event quickly and easily.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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