Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am new to the world of cocoa programming, i want to add applescript support to my app. Also the example at apple's website seems out of date

share|improve this question

7 Answers

  1. If you want to send AppleScript from your application and need a sandboxed app, you need to create a temporary entitlement

  2. You need to add those two keys in your info.plist

    <string>NSApplication</string>
    <key>NSAppleScriptEnabled</key>
    <true/>
    <key>OSAScriptingDefinition</key>
    <string>MyAppName.sdef</string>
    

    ...of course you have to change "MyAppName" to your app's name

  3. Create a .sdef file and add it to your project. The further course now greatly depends on the needs of your application, there are:

    1. Class Elements (create an object from AppleScript)
    2. Command Elements (override NSScriptCommand and execute "verb-like" commands)
    3. Enumeration Elements
    4. Record-Type Elements
    5. Value-Type Elements (KVC)
    6. Cocoa Elements

    -

    Go here to find a detailed description and many details on their implementation: https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ScriptableCocoaApplications/SApps_script_cmds/SAppsScriptCmds.html

  4. I found working with Class and KVC Elements very complicated, as I just wanted to execute a single command, nothing fancy. So in order to help others, here's an example of how to create a new simple command with one argument. In this example it'll "lookup" one string like this:

    tell application "MyAppName"
        lookup "some string"
    end tell
    
  5. The .sdef file for this command looks like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
    
    <dictionary title="MyAppName">
        <suite name="MyAppName Suite" code="MApN" description="MyAppName Scripts">
            <command name="lookup" code="lkpstrng" description="Look up a string, searches for an entry">
                <cocoa class="MyLookupCommand"/>
                <direct-parameter description="The string to lookup">
                    <type type="text"/>
                </direct-parameter>
            </command>
        </suite>
    </dictionary>
    
  6. Create a subclass of NSScriptCommand and name it MyLookupCommand

    The MyLookupCommand.h

    #import <Foundation/Foundation.h>
    
    @interface MyLookupCommand : NSScriptCommand
    
    @end
    

    The MyLookupCommand.m

    #import "MyLookupCommand.h"
    
    @implementation MyLookupCommand
    
    -(id)performDefaultImplementation {
    
        // get the arguments
        NSDictionary *args = [self evaluatedArguments];
        NSString *stringToSearch = @"";
        if(args.count) {
            stringToSearch = [args valueForKey:@""];    // get the direct argument
        } else {
            // raise error
            [self setScriptErrorNumber:-50];
            [self setScriptErrorString:@"Parameter Error: A Parameter is expected for the verb 'lookup' (You have to specify _what_ you want to lookup!)."];
        }
        // Implement your code logic (in this example, I'm just posting an internal notification)
        [[NSNotificationCenter defaultCenter] postNotificationName:@"AppShouldLookupStringNotification" object:stringToSearch];
        return nil;
    }
    
    @end
    

    That's basically it. The secret to this is to subclass NSStringCommand and override performDefaultImplementation. I hope this helps someone to get it faster...

share|improve this answer

Modern versions of Cocoa can directly interpret the scripting definition (.sdef) property list, so all you need to do for basic AppleScript support is to create the sdef per the docs, add it to your "copy bundle resources" phase and declare AppleScript support in your Info.plist. To access objects other than NSApp, you define object specifiers, so each object knows its position in the scripting world's hierarchy. That gets you kvc manipulation of object properties, and the ability to use object methods as simple script commands.

share|improve this answer
3  
Sdef Editor can help. shadowlab.org/Software/sdefeditor.php – Peter Hosey Mar 19 '10 at 23:48

You should read the Cocoa Scripting Guide on Apple's DevCenter.

share|improve this answer

The best place to look for on the subject is the Mac OS X Reference Library.
Here is all the information that you will need to get started:

SimpleScripting

This sample walks you through the most basic steps required to make an application scriptable. This includes setting up the info.plist file, adding a scripting dictionary, and adding a property to the main application class.

SimpleScriptingObjects

This sample is a follow-on to the SimpleScripting and SimpleScriptingProperties sample and it shows how to add an object hierarchy to the terminology provided by a AppleScriptable application.

SimpleScriptingProperties

This sample is a follow-on to the SimpleScripting sample and it shows how to add some properties to the terminology provided by a AppleScriptable application.

SimpleScriptingVerbs

This sample is a follow-on to the SimpleScripting sample and it shows how to add some verbs to the terminology provided by a AppleScriptable application.

SimpleScriptingPlugin

This sample is a follow-on to the SimpleScriptingObjects sample, and it uses many of the techniques from the SimpleScriptingVerbs sample. After completing the steps defined in the SimpleScriptingObjects sample to set up and create a scriptable application, you can continue with the steps in this sample to add both scripting plugin capabilities to the application and an example scripting plugin.

The techniques presented here illustrate a number of interesting things you can do with a scripting plugin. These include:

(a) adding new scripting classes

(b) extending existing scripting classes

(c) adding new scripting commands

Briefly said, once an application is scriptable, allowing for scripting plugins is easy work. The modifications to the host application are minimal and very generic. No special code needs to be added to the existing scripting classes to allow for plugins. And, creating the scripting plugins is no more difficult than adding some additional scripting to the application. The scripting plugin itself is a simple Cocoa Loadable Bundle that contains one or more .sdef files describing its scripting functionality.

share|improve this answer

I found this tutorial useful in the past. It is written with Core Data in mine, but should be easily converted to any Cocoa based app.

Adding Basic AppleScript to Core Data

share|improve this answer

You'll want to start with Introduction to AppleScript Overview.

EDIT: If you want some sample code, you can head to Mac OS X Reference Library:Interapplication Communication and filter the list with 'Sample Code'. I tried the Cocoa Sample application called Sketch under Xcode 3.2 and it works.

share|improve this answer

All you need to know: http://www.macosxautomation.com/applescript/apps/

share|improve this answer
This is a link to a webpage that sells a book, which seems a bit outdated... (Xcode3 on some screenshots) – auco May 27 '12 at 9:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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