Documentation Archive

Developer

Mac Automation Scripting Guide

On This Page

Objective-C to AppleScript Quick Translation Guide

This appendix provides AppleScript equivalents for typical Objective-C features of a class. Below the table is a list of notes that correspond to the numbers in column 1.

Note

Objective-C

AppleScript

image: ../Art/1_2x.png

@interface MyClass : NSObject {

script MyClass

   property parent: class "NSObject"

image: ../Art/2_2x.png

   int myProperty;

   IBOutlet NSTextField *myField;

}

IBOutlet @property (retain) NSButton *myButton;

property myProperty: 0

property myField: missing value

property myButton: missing value

image: ../Art/3_2x.png

@end

@implementation MyClass

image: ../Art/4_2x.png

- (IBAction) myAction:(id) object {

-- Handler with interleaved parameters

   on myAction:object

-- or

-- Handler with positional parameters

   on myAction_(object)

image: ../Art/5_2x.png

// No Arguments

   [object method];

// One Argument

   [object method:parameterName];

// Multiple Argument

   [object methodWithArgument1:parameter1 Argument2:parameter2];

-- No Arguments

      object's methodName()

-- or

methodName() of object

-- or

tell object to methodName()

-- One Argument

object's methodName:parameterName

-- or

methodName_(parameterName) of object

-- or

tell object to methodName:parameterName

-- Multiple Arguments

object's methodWithArgument1:parameter1 Argument2:parameter2

-- or

methodWithArgument1_Argument2_(parameter1, parameter2) of object

-- or

tell object to methodWithArgument1:parameter1 Argument2:parameter2

image: ../Art/6_2x.png

   [object propertyName];

   object.propertyName;

      object's propertyName()

-- or

propertyName() of object

      object's propertyName

-- or

propertyName of object

image: ../Art/7_2x.png

}

@end

   end myAction_

end script

  1. An Objective-C class corresponds to an AppleScript script object. In AppleScript, inheritance is denoted using the parent property.

  2. An instance variable or @property in Objective-C corresponds to a property in AppleScript.

    AppleScript doesn’t require explicit tagging of Interface Builder outlet properties (IBOutlet). Interface Builder sees any property with a value of missing value as a potential outlet.

  3. Objective-C divides class definitions into an @interface section containing properties and an @implementation section containing method definitions. AppleScript has no such division. Properties and methods are all contained within the same script object.

  4. An Objective-C method definition corresponds to an AppleScript handler that uses either an interleaved- or positional-style for parameter placement.

    Interleaved parameters are preceded by colons and separated by spaces, similar to Objective-C syntax. See Handlers with Interleaved Parameters in AppleScript Language Guide.

    A positional parameter hander name is the Objective-C selector name, with colons changed to underscores. This handler name is followed by parentheses enclosing comma-separated parameters. See Handlers with Positional Parameters in AppleScript Language Guide.

    AppleScript doesn’t require explicit tagging of Interface Builder action methods (IBAction). Interface Builder sees any method with a single parameter as a potential action method.

  5. A method call in Objective-C corresponds to an AppleScript handler call that uses either interleaved- or positional-style parameters. Regardless of style, parameters must always be provided in the order the method definition specifies.

    AppleScript has three equivalent syntaxes for addressing object handlers and properties: object's method, method of object, and tell object to method.

  6. An Objective-C method with no parameters, such as a property or constant, can be called using an explicit accessor method call or more concise dot syntax. Similarly in AppleScript, a method with no parameters can be called using a handler call with empty parentheses, or as a property without the parentheses.

  7. In AppleScript, handlers and script objects are closed using the end syntax.

Resolving Terminology Conflicts in AppleScriptObjC

AppleScript distinguishes between reserved words, application identifiers, and user identifiers. Reserved words are terms defined by AppleScript itself. Application identifiers, also known as application keywords, are terms defined by an app’s scripting dictionary. User identifiers are variable or subroutine names defined by the script writer.

Identifiers passed to AppleScriptObjC, in particular, Cocoa method names, must be user identifiers. If an identifier conflicts with a reserved word or an application identifier, you can force it to be considered a user identifier by escaping it—enclosing it in vertical bars. For example, the NSColor class has a set method for setting the current drawing color. However, set is a reserved AppleScript term for assigning variables. Calling the set method without escaping it would produce a syntax error. Listing 43-1 shows the correct usage.

APPLESCRIPT

Open in Script Editor

Listing 43-1AppleScriptObjC: Escaping a method name that conflicts with a reserved word
  1. myColor's |set|()
  2. -- OR
  3. |set|() of myColor
  4. -- OR
  5. tell myColor to |set|()

Similarly, NSWindow has a bounds property, but bounds is an application-defined term. Therefore, any references to this property must also be escaped. See Listing 43-2.

APPLESCRIPT

Open in Script Editor

Listing 43-2AppleScriptObjC: Escaping a property name that conflicts with an application identifier
  1. get myWindow's |bounds|
  2. -- OR
  3. get |bounds| of myWindow
  4. -- OR
  5. tell myColor to get |bounds|

When in doubt, add the vertical bars. If they’re unnecessary, they are merely redundant and harmless.

Importing Frameworks

To import a framework in AppleScript, use the use command, followed by the framework name. See Listing 43-3.

APPLESCRIPT

Open in Script Editor

Listing 43-3AppleScriptObjC: Importing Foundation framework
  1. use framework "Foundation"
  2. set theString to "Hello World"
  3. set theString to stringWithString_(theString) of NSString of current application
  4. set theString to (uppercaseString() of theString) as string
  5. --> Result: "HELLO WORLD"

Accessing Scripting Additions

A normal AppleScript automatically loads and has access to terminology from scripting additions that are installed on the system. In AppleScriptObjC scripts, you must explicitly state that you want to use scripting addition terminology. Listing 43-4 shows how to do this.

APPLESCRIPT

Open in Script Editor

Listing 43-4AppleScriptObjC: Using scripting additions
  1. use scripting additions
  2. display dialog "Hello World" as string

Classes and Constants

In AppleScriptObjC, Objective-C classes and constants are referred to in the context of the current application constant—a reference to the app that’s running the script.

In this context, classes are referenced using the class specifier, followed by the class name, as shown in Listing 43-5.

APPLESCRIPT

Open in Script Editor

Listing 43-5AppleScriptObjC: Referencing a class
  1. use framework "Foundation"
  2. class "NSView" of current application

Constants are referenced without a preceding identifier. See Listing 43-6.

APPLESCRIPT

Open in Script Editor

Listing 43-6AppleScriptObjC: Referencing a constant
  1. use framework "Foundation"
  2. current application's NSCalibratedRGBColorSpace
  3. -- OR
  4. NSCalibratedRGBColorSpace of current application

Listing 43-7 demonstrates how to reference both Objective-C classes and constants.

APPLESCRIPT

Open in Script Editor

Listing 43-7AppleScriptObjC: Example of a script that references both classes and constants
  1. script MyView
  2. property parent : class "NSView"
  3. on drawRect:rect
  4. set theWhiteColor to current application's class "NSColor"'s whiteColor()
  5. -- OR
  6. set theWhiteColor to whiteColor() of class "NSColor" of current application
  7. -- OR
  8. tell class "NSColor" of current application to set theWhiteColor to whiteColor()
  9. theWhiteColor's colorUsingColorSpaceName:(current application's NSCalibratedRGBColorSpace)
  10. -- OR
  11. colorUsingColorSpaceName_(NSCalibratedRGBColorSpace of current application) of theWhiteColor
  12. end drawRect:
  13. end script

In places where current application is the current context, such as the top level of a script, current application may be shortened to my or me. In the case of class specifiers, it may be omitted entirely. See Listing 43-8.

APPLESCRIPT

Open in Script Editor

Listing 43-8AppleScriptObjC: Referencing a classes and constants in the context of the current application
  1. use framework "Foundation"
  2. class "NSView"
  3. my NSCalibratedRGBColorSpace
  4. -- OR
  5. NSCalibratedRGBColorSpace of me

As a convenience technique to save typing, it’s good practice to define properties for classes at the top of your script. This way, you can refer to them by property name throughout your script.

APPLESCRIPT

Open in Script Editor

Listing 43-9AppleScriptObjC: Defining classes as properties
  1. script MyView
  2. property parent : class "NSView"
  3. property NSColor : class "NSColor"
  4. on drawRect:rect
  5. set theWhiteColor to NSColor's whiteColor()
  6. theWhiteColor's colorUsingColorSpaceName:NSCalibratedRGBColorSpace
  7. end drawRect:
  8. end script

Resources

For additional information about AppleScriptObjC, see AppleScriptObjC Release Notes and the third-party book EveryDay AppleScriptObjC.