
For all those curious, AppleScript is Apple Computer, Inc.'s dynamic scripting language for Macintosh. Its syntax is incredibly simple to learn because is resembles the English language. Here's an example:
display dialog "Welcome to AppleScript!" buttons {"Glad to be here!", "Not for me"} default button 1
if button returned of result is "Glad to be here!" then
beep
end if
This little snipet displays the following:
Now at first glance, AppleScript may seem like just another macro language. But is not! With more experience, you can create some powerful applets that can not only simplify routine tasks, but manage servers, fetch Web pages, grab files from FTP, even deliver e-mail.
The key to making AppleScript the power-house it is are OSAXen. These are loadable "plug-ins" for AppleScript that extend its functionality. If you're starting out in AppleScript, you might want to download Jon's Commands, GTQ Scripting Library, Script Tools, and my personal favorite, XCMD OSAX. These feature many great functions that with a creative mind, can be put to good use. This page is still very much under construction. I will be posting some of the AppleScript applets I have written shortly. In the meatime, you can email me with any questions. I will be happy to offer any help I can.
What's New: