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
- The 20 Best iPhone/iPad Games of 2013 So Far
- 9 Steps to Build Your Personal Brand (and Your Career)
- 7 Consumer Technologies Coming to an Enterprise Near You
- 11 Signs Your IT Project is Doomed
- A walking tour: 33 questions to ask about your company's security
- 15 social media scams
- The 7 elements of a successful security awareness program
- IT Certification Study Tips
- Register for this Computerworld Insider Study Tip guide and gain access to hundreds of premium content articles, cheat sheets, product reviews and more.
- Software Asset Management: Ensuring Today's Assets Today's trends like BYOD and SaaS are new and exciting in terms of how they will help make our jobs more productive but...
- Software Asset Management: Getting Started Find out what steps to take that can lead your organization down the smooth path to SAM deployment.
- Gartner Report: How to Decide Whether SaaS ITSSM Tools Make Sense for Your Organization SaaS-based IT ITSSM tools appear to provide cost savings. However, failure to account for the resources to implement, integrate, operate and maintain the...
- Harness IT -- An Introduction to Business Intelligence Solutions Learn the key selection criteria required to provide your organization with the capability to address structured data, unstructured data and mobile demands so...
- The ServiceNow Service Automation Platform During this webinar, you will discover how ServiceNow is enabling organizations to increase their competitive agility, user satisfaction and productivity, all while enhancing...
- Building a Business Case for Service Management & Automation As an IT infrastructure and operations (I&O) leader you understand the business and IT impact of service management and automation (SMA). All Operating Systems White Papers | Webcasts
From invoking 'God Mode' to hacking the lock screen, here are 10 ways to make Windows 8 act the way you want. Read more...