10 AppleScripts to make you love your Mac (even more)
Apple's highly useful scripting language is one of the Mac's hidden gems.
Computerworld - Why, when people were trying to get me to switch from Windows to a Mac, did no one tell me about AppleScript?
Sure, a stable OS with Unix shell access and a sophisticated UI are nice. But a scripting language that lets me automate tedious tasks and hike my creativity-to-boredom ratio? How come I never heard about that?
"It's the hidden secret," said Sal Soghoian, co-author of Apple Training Series: AppleScript 1-2-3 and Apple's product manager for automation technology. He added that it rarely gets talked about.
AppleScript's appeal is that it can control both your operating system and your applications, easily passing information among them. Soghoian estimates that four out of five "top-tier" Apple customers use AppleScript for serious automation -- his examples include The New York Times generating daily stock charts and software developers testing applications. Even Microsoft uses it, he says (for work on developing Office for Macintosh).
But AppleScript is also well suited for the desktop. You can use it to set your system to boot up with certain apps open in a particular way, right down to the size, location and content of each window. You can batch process files, rename and resize multiple images, or fetch Web pages and manipulate the results. You can connect to network servers and even create a simple database.
After a few months on a Mac, I wrote a script that copies data from a weekly report I get as a PDF, and formats it for insertion into a spreadsheet. This saves a boatload of tedious cutting and pasting. Another script pulls data out of our Web analytics tool and formats it for our home page "popular right now" box. Another one reads a text document and inserts the article information into proper fields of our content management system, saving more cut-and-paste operations.
It's also extremely easy to share AppleScripts with colleagues who use Macs -- a bit more elegant than, say, trying to share Perl scripts with Windows users who don't have Perl (and the required add-on modules) already installed.
While other languages offer some similar capabilities to AppleScript, "there's simply nothing like it in Windows," declares David Pogue in his book Switching to the Mac: The Missing Manual, Leopard Edition. "It's a programming language that's both very simple and very powerful, because it lets Mac programs send instructions or data to each other." And it does so using commands that are closer to plain English than most other scripting options.
A few caveats
AppleScript's use of (relatively) natural language for its commands is a mixed blessing. While it's popular among non-IT power users, even Soghoian admits that the syntax can frustrate those who regularly work in a language like Perl or Java. I lost count of how many errors I got because I'd write something like "x = 4" instead of the AppleScript-approved "set x to 4." And I don't program full time.
Although I've become an AppleScript enthusiast, I will caution that "natural language" doesn't always mean "intuitive and easy." While there are usually multiple ways to express something in AppleScript, quite a number of other syntaxes that might make sense won't work in a script. The "nouns" and "verbs" to script specific applications can be hard to ferret out and apply properly, even after perusing the appropriate app "dictionary" (a listing of that application's scriptable objects and methods). So some patience (and checking out others' code) is needed.
Fortunately, though, some highly scriptable applications allow you to record activities in the AppleScript editor, very much like a macro recorder which translates your actions into (editable) AppleScript commands. This was very handy when I couldn't figure out on my own the proper AppleScript for TextWrangler's search and replace. For example, I use this AppleScript snippet to delete all percentages in a report that are formatted with a space followed by one or two digits followed by a period followed by one digit followed by a percent sign -- as in 5.3% or 23.8%:
tell application "TextWrangler" to replace "\\s\\d{1,2}\\.\\d\\%" using "" searching in text 1 of text document 1 options {search mode:grep, starting at top:true, wrap around:false, backwards:false, case sensitive:false, match words:false, extend selection:false}
A final warning: AppleScript is not particularly well suited for a lot of text manipulation. There's no built-in support for regular expressions; there's not even a simple search-and-replace function as part of core AppleScript.
Getting the most out of AppleScript



- Excel 2010 Cheat Sheet
- Register for this Computerworld Insider Cheat Sheet and gain access to hundreds of premium content articles, guides, product reviews and more.
- VMware View Optimization Guide for Windows 7
- This document provides guidelines for configuring a standard Windows 7 image to be used within a VMware View™ environment, providing administrators with the...
- Watson - A System Designed for Answers. The future of workload optimized systems design
- Watson is a workload optimized system designed for complex analytics, made possible by integrating massively parallel POWER7 processors and DeepQA technology. Read the...
- Overcome Top 7 Admin Challenges of Active Directory
- As Active Directory's role in the enterprise has drastically increased, so has the need to secure the data. Gain insight on creating repeatable,...
- Insiders Can Ruin Your Company. Take Action.
- Did you know that 80 percent of threats to an organization come from the inside? The threat from insiders is often overlooked in...
- Top Solutions and Tools to Prevent Devastating Malware
- Custom malware frequently goes undetected. According to Forrester Research, the best way to reduce risk of breach is to deploy file integrity monitoring... All Operating Systems White Papers
- Optimizing Networks for the Cloud
- Join guest speaker, Rohit Mehra, IDC Director of Enterprise Communications Infrastructure, to explore current trends, discuss best practices for optimizing Data Center and...
- Apps QuickStart Series Part 2: Designing and Deploying SQL Server on VMware vSphere
- Download this webcast to learn about the design considerations for virtualizing SQL workloads, performance and scalability information and high-availability options, as well as...
- Apps QuickStart Series Part 1: Designing and Deploying Exchange 2010 on VMware vSphere
- Download this webcast to learn the virtual hardware design considerations for Exchange 2010, deployment using the building block approach, options for high-availability and...
- Customer Spotlight: How IPC The Hospitalist Company Implemented Oracle on VMware
- Have you been looking to hear about customer's experiences with the new VMware vCenter Site Recovery Manager product? View this webcast to learn...
- Virtualize Business-Critical Applications with Confidence
- Virtualizing business-critical applications has become a key focus for organizations as they move along their virtualization journey. With the launch of VMware vSphere®... All Operating Systems Webcasts