Applescript Editor 2.0 Download Mac

Chapter 2: Up to Speed with AppleScript Editor If you’re using Mac OS X Leopard (10.5) or an earlier version, your AppleScript tool is named Script Editor rather than AppleScript Editor. As you can see in Figure 2-2, the Script Editor window has three tabs at the bottom—Description, Result, and Event Log— instead of the two that. You can find this application in the AppleScript folder located in the Applications folder on your computer’s main hard drive. Navigate to this folder now and double-click the Script Editor icon to launch the application. NOTE: The following description and illustrations are for the Script Editor application included in Mac OSX 10.5. 10 AppleScripts to make you love your Mac (even more). Fortunately, though, some highly scriptable applications allow you to record activities in the AppleScript editor, very much like a macro. This focus allows it to deliver a suite of tools that make AppleScript development amazingly productive. You can use it to write and edit code, analyze target applications, debug scripts, and more. Script Debugger has been making AppleScript better for over 25 years! Script Debugger 8 continues the tradition with support for Apple M1 Macs. AppleScript downloads on CNET - Product reviews and prices. AppleScript Editor Everything you need to start automating tasks with AppleScript. AppleScript is a powerful and versatile scripting language built into OS X. Older Apple software downloads; Updating Mac Operating Systems; AppleScript Extras 1.1 Add some extras to AppleScript for OS 8.6.

The Script Editor

Since this tutorial is very “hands-on,” we’ll be writing scripts right away. To write a script, you’ll use the Script Editor application installed in your system. You can find this application in the AppleScript folder located in the Applications folder on your computer’s main hard drive. Navigate to this folder now and double-click the Script Editor icon to launch the application.

Applescript Editor 2.0 Download Mac

NOTE: The following description and illustrations are for the Script Editor application included in Mac OSX 10.5. Earlier versions will have a different design.

The Script Editor application icon.

Editor

After starting up, the Script Editor application displays a multi-paned window known as a script window. This script window comprises two panes, the top pane containing the script text, and the bottom pane containing either the script description, the script result, or the script log, depending on which tab below the pane has been selected.

A script window in the Script Editor application.

By default, the script window is rather small, so you may wish expand its size before proceeding with this tutorial. Please note that the Script Editor and other AppleScript tools are covered in detail elsewhere in this book.

Our First Script

You’ll begin the process of learning AppleScript by writing a series a simple script commands in the form of a “tell statements.” A tell statement is a single line script beginning with the verb: tell. This verb is used to direct script actions at a specific application or scriptable object. A tell statement is composed of two parts:

  1. A reference to the object to be scripted, and
  2. The action to be performed.
Applescript

Using this grammatical format or syntax, we can write scripts instructing the Finder to perform whatever actions we desire. Here's our first script:

A simple script statement to close all open Finder windows.
tell application 'Finder' to close every window

Enter this script in the top pane of the Script Editor script window exactly as show (be sure to encase the word “Finder” in straight quotes). Click the Compile button on the script window to confirm that it has been written correctly and to prepare the script for use.

Next, click the Run button to play your script. The operating system will read the script and send the appropriate commands to the Finder application, which will then follow the instruction to close any open windows.

Congratulations, you’ve written and run your first AppleScript script!

Note that the word “Finder” is enclosed in quotation marks in the script. Names and textual data are always quoted in scripts. This is done to indicate to the Script Editor that the quoted material is textual data and not to be considered as commands or instructions when the script is compiled in preparation for execution.

Delete the previous script from the script window, then enter, compile, and run the following script:

A script to open the hard drive that contains the currently running System folder.
tell application 'Finder' to open the startup disk

A new Finder window will now appear on the desktop displaying the contents of the startup disk. We’ll use this newly opened window as we examine the properties of a Finder window.

Finder windows display the contents of folders or disks.

Applescript Editor 2.0 Download Mac Free

A Word about Finder Windows

Applescript Editor For Windows

Finder windows are different from other windows used by the Finder application, in that they display the contents of folders and, may contain a Toolbar and Sidebar. The remaining script examples of this chapter we will use the term Finder window instead of the generic term window when referring to Finder windows.

Applescript Editor 2.0 Download Mac Os

TOP | CONTINUE