Try Tuts+ Premium, Get Cash Back!
The Ultimate Beginner’s Guide To AppleScript

The Ultimate Beginner’s Guide To AppleScript

Tutorial Details
  • Topics: AppleScript, Automation
  • Difficulty: Beginner
  • Estimated Completion Time: 30 Minutes

This is the first post in a new series that revisits some of our readers’ favorite posts from the past that still contain awesome and relevant information that you might find useful. This post was originally published on July 7, 2009.

The best part about AppleScript is that you don’t have to be a genius programmer to use it. In fact, you don’t have to have any programming experience whatsoever. This article will show you how to write an AppleScript for nearly any application using the simple instructions that come hidden within each app’s framework. Intrigued? Read on!


What is AppleScript?

AppleScript is a powerful scripting language that comes built-in to OS X. The principal use for AppleScript is the automation of tasks that are normally repetitious and time consuming. For instance, as a freelancer, I hate creating invoices every week for my various clients. To solve this problem I wrote an AppleScript that reads the hours that I log into iCal, creates an invoice in Microsoft Excel based on those hours, and emails the invoices to my clients. All with the click of a button!

applescript
The Main Window

Getting Started: The Tell Block

To create an AppleScript, open the application “Script Editor” located inside the AppleScript folder within the Applications folder. You should see a simple window containing a large text field with a strip of buttons along the top. Inside the text field type the following code:

tell application "Finder"
	display dialog "Hello World"
end tell

AppleScript attempts to use plain English wherever possible to make coding extremely simple. Most commands in AppleScript are located inside a “tell block”. It’s called a “tell block” because you are “telling” a given application what you want it to do. For instance, the code above is telling the Finder to display a dialog window containing the words “Hello World”. After you are finished with a command or string of commands for a given application, you end the block with “end tell”.

Always remember to end your tell blocks correctly or the code will not compile!

After you are done entering the code above, click on the “Compile” hammer icon. If your syntax is correct, your code will automatically format and colorize. If you have made an error, Script Editor will highlight the problematic area and give you a message about what it thinks might have gone wrong. Here is a quick reference to the various colors you’ll see in your compiled code (found in Script Editor>Preferences).

applescript
Color Guide

After your code has compiled, click on the “Run” button. You should see the following dialog:

applescript
Hello World

Now click the “OK” button and look at the bottom of your Script Editor window. When you run a script, Script Editor tells you what the result was, or what was “returned”. In this case it’s telling you that the “OK” button was clicked.

applescript
The OK Return

Declaring Variables

Variables are essentially the same in every programming language. They provide an easy way to access and manipulate lots of information in a compact snippet of code. Creating or “declaring” variables is different for every language. In AppleScript you declare variables as follows:

set theString to "Hello World"
tell application "Finder"
	display dialog theString
end tell

There are several things to note about the previous example. First, notice that variables are declared using the “set” and “to” commands. By doing this you are setting your variable name, in this case “theString”, to equal something, in this case the text “Hello World”. Many programming languages require that you state the type of variable you want in the declaration (integer, floating point, text, etc.). AppleScript however, is intelligent enough to work with your variables without any instruction about the format.

Also notice how I typed my variable name. You can’t have spaces in a variable name so it’s good practice to use camel case (theString) or the underscore method (the_string). It doesn’t really matter which method you choose, just make sure you’re consistent throughout your code. It’s also a good idea to give all your variables meaningful names. When you are looking another programmer’s code, it can be annoying to see variable names like “myVariable” that don’t give any indication as to what they are or what they will be used for.

Finally, notice that now that I’ve placed the text “Hello World” inside a variable, I can call that variable again and again throughout my code. Then if I later decide to change the text “Hello World” to “Good Morning Dave”, I only have to change the text on the line where I declared the variable.


Working with Variables

You can do all kinds of crazy things with variables, but since this is only meant to be a brief introduction to AppleScript, I’ll just show you a few. Type in the following code:

--Integer Variables
set theFirstNumber to 3
set the theSecondNumber to 2
--Variable Operations
set theAnswer to (theFirstNumber + theSecondNumber)
set theAnswer to (theAnswer + 1)
--String Variables
set theString to "3+2+1="
--Display Dialog
tell application "Finder"
	display dialog theString & theAnswer
end tell

You can compile your code quickly by pressing the “enter” key (not the return key). This is located on the ten key number pad on desktop computers and next to the “Command” key to the right of the space bar on laptops.

As your script becomes more complex, a bit of organization is in order. By typing two dashes “–” before a line of text, you can insert a comment. Use comments to separate and describe your sections of code for easy navigation. In this example I’ve created a string variable (text only) and a few integer variables. Notice that you can perform mathematical operations on variables. Here I’ve set “theFirstNumber” to equal three and “theSecondNumber” to equal two and then added them together in “theAnswer”.

Also notice that you can change a variable after it is declared. Immediately after setting “theAnswer” to the sum of “theFirstNumber” and “theSecondNumber” (resulting in 5), I changed the value of “theAnswer” by adding one to it (resulting in 6). If you run this script you should see the following result:

applescript
Some Basic Math

Again, this only scratches the surface of the kinds of operations you can perform on variables. For now you should just understand that a variable isn’t static. Much of the power of behind any programming language is the ability to manipulate variables to perform a wide variety of tasks.


The Key to it All: AppleScript Dictionaries

Though AppleScript itself has a wide range of commands that can be applied to any program or item in OS X, the developers of each application are tasked with adding full AppleScript support to their apps. What this means is that developers must write simple manuals for how to communicate with their applications through AppleScript. These manuals are called “Dictionaries”. To view a dictionary, go to File>Open Dictionary in Script Editor. Scroll down the list of applications, click on Mail and hit “OK”. You should see the following window:

applescript
The Mail Dictionary

The column on the left contains the available “Suites” of commands and items. When you click on a suite, you’ll see everything contained in the suite displayed below. You can narrow this preview by clicking in the second column, then again in the third. Suites contain commands (C with a circle) and classes (C with a square), classes contain properties (P) and elements (E). To understand how all this works, let’s use this dictionary to create a script.


Step 1: Create an Algorithm for Our Script

First we need an algorithm, which is a fancy way to say that we need write down exactly what our script will do. We want to create a script to compose and send an email. We’ll want to use variables to make it easy to change the message itself as well as who the message is sent to. As we write our algorithm, we need to keep in mind the way AppleScript works. Here are the steps I came up with:

  1. Create variables for the recipient, the recipient’s email address, the subject of the email, and the text for the body of the email.
  2. Create a variable that holds our new message along with its various properties
  3. Create the new message
  4. Send the new message

Step 2: Create Some Variables

We already know how to create variables holding text so we don’t even need the dictionary for step one. Here’s what the code looks like:

--Variables
set recipientName to "John Doe"
set recipientAddress to "nobody@nowhere.com"
set theSubject to "AppleScript Automated Email"
set theContent to "This email was created and sent using AppleScript!"

As you can see, we’ve just put placeholder text into the variables for the name and email address of the recipient as well as the subject and content of our message. You can change these to anything you’d like. Be sure to put your own email address in the recipientAddress variable so you can ensure that the the script is working properly when you receive the email.


Step 3: Create the Message Variable with the Mail Dictionary

Since we have no idea how to tell Mail to create a new message, this is where we need to refer to the AppleScript dictionary. If you click on “Standard Suite” you’ll see several common commands that come standard in AppleScript. Knowing that we want to “create” a new message, we just scroll through the options and find something equivalent. You’ll see there is no “create” command but about half way down there is a “make” command. That sounds perfect, so we now know to tell AppleScript we want to “make” something.

Next click on the “Mail” suite. We’ve already got our command (make) so scroll down past the commands (verbs) until you see the classes (nouns). The first class we come across is “outgoing message”, which is great because that’s exactly what we want! Now click on the “outgoing message” class and look at the available properties down below.

We need to plug in our variables for the recipient’s name, the recipient’s email address, the subject, and the contents of the message. In the list of properties there isn’t anything about the recipient but there are properties for subject and content. We now know the proper syntax to refer to these properties. Notice that the dictionary gives you the format to define the properties. For instance for the subject, we’ll type the word “subject” followed by a colon followed by the text of the subject.

applescript
Subject Content

Also in this suite you’ll find a “send” command, which we can use to send the message by simply typing “send”. We still need to know the proper syntax for the recipient’s name and email address. Since it’s not in this suite, click on the “Message” suite. About halfway down the list of classes we find “recipient”. Click on the recipient class and we see that once again, we can use plain English to refer to the properties of the recipient. We’ll simply type “name” and “address”.

You can use the search feature to hunt down properties, classes, elements and commands quickly.

Now we are ready to create our message variable using the syntax we’ve just learned. Here’s what the code looks like:

--Variables
set recipientName to "John Doe"
set recipientAddress to "nobody@nowhere.com"
set theSubject to "AppleScript Automated Email"
set theContent to "This email was created and sent using AppleScript!"
--Mail Tell Block
tell application "Mail"
--Create the message
set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}
end tell

Notice I’ve created a tell block to enclose all the commands to the Mail application. Then I set a variable (theMessage) to “make” a new “outgoing message” with the properties discussed above. Also notice that sets of properties are always contained in brackets { }.


Step 4: Set the Recipient and Send the Message

Now that we’ve created our message variable, we need to call that variable and create a new message with the properties of theMessage. We also need to set the recipients and send the message. To do this, we’ll use a tell block on our variable. Here’s our finished script.

--Variables
set recipientName to "John Doe"
set recipientAddress to "nobody@nowhere.com"
set theSubject to "AppleScript Automated Email"
set theContent to "This email was created and sent using AppleScript!"
--Mail Tell Block
tell application "Mail"
	--Create the message
	set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}
	--Set a recipient
	tell theMessage
		make new to recipient with properties {name:recipientName, address:recipientAddress}
		--Send the Message
		send
	end tell
end tell

First, we created a new copy of theMessage (which inherits all the properties we’ve put into it) and set it “to recipient with properties”. This tells Mail that we want to add a recipient with the following properties. Here we just used the syntax we learned before and the variables for the name and address of the recipient.

Finally, we invoked the “send” command to send our message. Notice that we have two tell blocks to close this time. Once you’ve compiled your code and fixed any errors hit the “Run”. Mail should automatically create and send the message. Tadaah! Check your sent folder to make sure everything worked.

applescript
Mail Message

Congratulations, you’ve created your first AppleScript! You can save it as a simple script that you can come back and edit or as an application that runs automatically when you open it.


Conclusion: Keep Learning

I hope this beginner’s guide has you thinking about all kinds of processes and tasks you’d like to automate. The syntax I’ve shown you along with the AppleScript Dictionaries will get you a long way. However, if you’re really interested in implementing AppleScript in a number of useful ways, you’ve got more reading to do. Apple provides lots of information all about AppleScript on their website. Here’s a good place to start.

Another website I’ve picked up a great deal from is T&B. It offers some really in-depth explanations and tutorials for you to follow (a little dated, but thorough and free). Please feel welcome to leave a comment and let us know if you found this tutorial helpful! What other AppleScript tips would you like to see covered in the future?

Josh Johnson is secondfret on Graphicriver
Note: Want to add some source code? Type <pre><code> before it and </code></pre> after it. Find out more
  • Pingback: Build a Window Management App with Apptivate and AppleScript | Mac.AppStorm

  • Nigel

    Hey Joshua:

    One of the things I keep running into as I try to find clear, well-written instructions for AppleScript newbies (like me) is that some of the information turns out to be dated…by which I mean old. It would be a big help if your dates (and the dates of the posts on this page) included the YEAR. “July 7″ isn’t enough.

    Other than that, great article. I’ve bookmarked this for future reference.

  • http://www.martinvaresio.com.ar/medallones.html Martin

    That some of the information turns out to be dated…by which I mean old

  • vadivel

    great work.really interest

  • Pingback: Daily Digest for December 16th

  • http://www.cheap-cigarettes-here.com cigs australia

    Applescript, that amazing resource many Mac users ignore because they think it’s too complex. Guys, Applescript is an amazing tool to get things done automatically, though I recognize many of you just don’t want to get started because you don’t have the right motivation, or you just don’t know enough about it.

    • http://www.oregoncyclingaction.com/ Oregon Cycling

      yes, you are right Applescript is totally amazing!

    • http://macgeeky.no/ Robert Sørensen

      You’re so right about that!

      The best thing about learning and mastering Applescript is the number of uses it has – you can use it make a ton of different extensions in apps like Alfred, BetterTouchTool, and so on. You can make services and add keyboard shortcuts to them.

      And if you’ve got a kid in the house who wants to learn programming, Applescript is a good place to start because it teaches a lot about programming terminology and how to think to solve problems with a algorithm :)

  • http://blog.alsbury.com David

    I have been looking for a way to generate rich text or html emails with Action Script. Do you know if that is possible? Everything I have seen points to “NO”.

    • http://thelinemovie.org line movie

      very useful guide…I even had problems with the applescript.

  • Pingback: AppleScript学习之二 « 我的新家

  • http://www.box.net/file/611828245/encoded/66886671/5ec0feff37b2082be00fb18d45af5736 cbfffe

    Very interesting site. ‘ll Come again!

    • http://www.sustainableproductsblog.com Sustainable Products

      awesome articles and genius ideas…great site, I love to drink my coffee in the morning reading your articles.

  • http://www.eu-tobacco.com/es/ tabaco barato

    Rather than load an AppleScript Dictionary I refer to frequently using Script Editor’s “Open Dictionary” command (which will list every scriptable app’s dictionary), I save a particular dictionary to a folder for faster access. When an AppleScript Dictionary is open, click “Save As…” in Script Editor’s File menu and save the guy wherever you want. Double-click on it later and it opens just fine in Script Editor.

  • Kris Davidson

    The whole world has just been opened to me. Thank you for this great help in AppleScripting. I would like to learn much more.

    • http://martinvaresio.com.ar Rodocrosita

      If this gets people’s attention, and they want to pursue the subject, the best book I’ve found so far is “Applescript 1-2-3″ by Sal Soghoian and BIll Cheesman. Sal’s in charge of Applescript at Apple and Bill Cheesman is the god of Applescript writing (and I hear he’s a pretty good attorney).

  • alexx

    there’s no property called “content”, i’m running 10.7… is this normal?

  • Pingback: AppleScript: Automatically Create Screenshots from a List of Websites | Mac.AppStorm

  • Alex Coleman

    Everything looks great, good job, but the mail wasn’t working for me. I got an error with “set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}”, it told me it expected end of line not an identifier, anyone know what i did wrong? i just copy and pasted it in, i’ve scanned it for differences but haven’t found any :(
    PS: Im running the latest version, idk if it has changed since

  • Pingback: Devin's Tech 4 You » Blog Archive » Getting started with Applescript

  • muffin

    is it possible to get variables from flash actionscript and connect it with applescript so that the text in flash would go into the text file created by applescript?

  • http://sexshoptienda.net tiendaerotica

    Very helpful piece of writing, much thanks for the article.

  • http://www.seashellvelasco.com Beauty Tips

    this thread is one of the most interesting articles I read this month

  • http://www.colourcanvas.com New to apple script

    Hi im new to apple script does anyone have a good resource for learning it simply and quickly.

    Cheap Photo canvas

    • Bart

      Check out the book, “The Tao of Applescript” Though it’s quite dated, (my copy is 2nd edition, 1994) it’s still a a great starting point and will explain a lot that you will not find elsewhere.

  • http://www.delavarforcongress.com congress

    I also think you are doing a great job with these articles

  • http://www.nonsoloescort.com escort roma

    Thanks for your article, pretty useful piece of writing.

  • http://www.felipemoura.net Horoscope

    It’s nice to remember those days when I was an applescript beginner.

  • Pingback: AppleScript: Creating Complex Dialogs with Ease | Mac.AppStorm

  • Pingback: AppleScript: Creating Complex Dialogs with Ease | Apple World

  • http://www.casaescort.com/Donne/Roma Carlo

    Great article, continue to post because it is very useful. Thanks to all.

  • http://easyprofitbotreview-easy-profit-bot-review.com/ Easy-Profit-Bot-Review

    Hi There! siblings simply love your striking editorial thanks and pls keep it on

  • http://sexshoptienda.net tienda erotica

    The dude is completely just, and there is no skepticism.

  • Pingback: ChronoSlider: A Simpler Timer & Alarm App | Mac.AppStorm

  • http://www.thetravelingtwosome.com Louis Magnifico

    Does anyone know how to do a “display dialog” that sends the dialog box to an extended monitor rather than the main monitor in a two-monitor setup?

  • http://www.izmirkiralikoto.net izmir araç kiralama

    It’s nice to remember those days when I was an applescript beginner.

  • http://www.aeronaves.org Aeronaves

    i Agree in though I recognize many of you just don’t want to get started because you don’t have the right motivation…Thanks !

  • Paul Dunahoo

    I’ve always enjoyed AppleScript, it is so much more fun than the other languages.

    Disclaimer: I am a programmer :)

  • Pingback: Apple World's #1 PC Vendor, 40+ Secret Lion Features, Matias Mac … | PC Tablet Updates

  • Flemming Lund

    Great introductory! Though I have one question regarding the format;
    Why is there a difference in the language and structure of the set and tell line?
    Specifically where ‘set the message’ is followed by ‘to make’ on same line whereas ‘tell the message’ is followed by a break and ‘make’ beginning on separate line? How would any new beginner know how to figure out this when troubleshooting code?
    Aside from obviously more in depth learning required…
    You also forgot to mention in your descriptive where the visible dialogue came from – soon figured it out myself but was wondering why it wasn’t mentioned.
    Cheers!
    Look forward to seeing more!

  • http://www.casaescort.com Roberto

    Hello to all, the whole world has just been opened to me. Thank you for this great help in AppleScripting. I would like to learn much more.

  • Zee

    Awesome tutorial! I didn’t know AppleScripting was so powerful. Thanks for the cool insight!

  • Pingback: Is Apple losing interest in AppleScript? « Ipod7

  • http://www.yenisarkilar.org en yeni şarkılar

    thank you admin really good konus..

  • PuddaRicanMac

    I will figure this out on my own but for now, show viewers how to receive user data input in respects to variable containers.

  • Pingback: Recopilación de 90 enlaces interesantes | Vectoralia

  • http://www.tofitamescort.com escort

    Thank you applescript

  • http://www.tofitamescort.com escort

    Thank you apple :)

  • http://www.ankaraescortsenem.net Ankara Escort

    - Ankara Masöz Bayan – Çankaya , Bilkent , Oran , ÜmitKöy

  • Pingback: Linkdump for March 20th | found drama

  • http://hordine.wordpress.com/ Henrique Ordine

    Made nice and easy. Thank you!

  • http://www.casaescort.com/Donne/Firenze CasaEscort

    I love this article because is very interesting and useful. Thanks, keep sharing. Goos luck.

  • http://www.0731988.com /
  • random guy

    I couldn’t make your mail script work. In my system, the dictionary states
    outgoing message n : A new email message

    elements
    contains bcc recipients, cc recipients, recipients, to recipients; contained by application.
    properties
    sender (text) : The sender of the message
    subject (text) : The subject of the message
    content (rich text) : The contents of the message
    visible (boolean) : Controls whether the message window is shown on the screen. The default is false
    message signature (signature or missing value) : The signature of the message
    id (integer, r/o) : The unique identifier of the message
    responds to
    save, close, send.

    So somehow Content wouldn’t take text as a input and the msg doesn’t work.
    I keep getting:
    “Mail got an error: Can’t make «script» into type rich text.”

    Some help is appreciated.

    • http://mac.tutsplus.com Josh Johnson
      Author

      Difficult to say what went wrong… you could’ve made a typo, you could be on a different operating system, etc. I actually wrote the script ages ago but it works just fine on my installation of Lion as well.

  • Ex2bot

    Interesting article! Thanks.

  • Stan

    Nice! I’d like to see more tuts like this one ;)