Skip to Content
Beginning AppleScript®
book

Beginning AppleScript®

by Stephen G. Kochan
December 2004
Beginner
600 pages
13h 42m
English
Wrox
Content preview from Beginning AppleScript®

9.2. The try...on error Statement

You are familiar with the try statement, which was first introduced in Chapter 3. You use it according to this general format:

try
    statement
    statement
    ...
end try

A statement in the try block that generates an error causes execution of the statements that follow, up to the end try, to be skipped. Execution of the program otherwise continues with whatever statement follows the try block.

One technique you learned to determine whether a statement in a try block fails is illustrated by the following code fragment from Chapter 4:

set validNumber to false
try
    set triangularNumber to text returned of result as integer
    set validNumber to true
end try

if not validNumber then
     display dialog "You didn't enter an integer" with icon note
end if

Here you set a flag to false before entering the try block and then set the flag to true after the last statement inside the try block is executed. This statement is reached only if none of the preceding statements—and here, you have only one such statement—in the try block generated an error. Outside the try block, you test the value of the flag to see if any errors occurred.

An easier way to accomplish this same logic involves using this form of the try statement:

try
    statement
    statement
    ...
on error
    statement
    statement
    ...
end try

If any of the statements between try and on error generates an error, the statements that follow the on error, up to the end try, get executed. If no errors are generated by the statements ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Take Control of Your M-Series Mac

Take Control of Your M-Series Mac

Glenn Fleishman

Publisher Resources

ISBN: 9780764574009Purchase book