Contents

AMAppleScriptAction

An object that represents Automator actions whose runtime behavior is driven by an AppleScript script.

Declaration

class AMAppleScriptAction

Overview

An AMAppleScriptAction object holds the compiled script as an instance of the OSAScript class. By default, the OSAScript object is instantiated from the script in the Xcode project file main.applescript.

When you create a Automator Applescript Action project in Xcode, the project template supplies an AMAppleScriptAction instance as File’s Owner of the action bundle. This ready-made instance provides a default implementation of the AMAction run(withInput:) method that uses the logic defined in the script. You can substitute your own subclass of AMAppleScriptAction for File’s Owner if you need to.

Topics

Accessing the script