AppleScript Tutorial Wiki
Advertisement

The "tell" command is used to specify a target for another command/set of commands. It can be used so the script writer does not need to continue writing out the targeting command.

Example[]

tell <application>

     <command>  <parameters>

end tell

Where <application> is an application, <command> is a Command or handler directed at the application, and <parameters> are the Parameters that the command or handler may need.

Advertisement