AppleScript: Creating To-Dos in iCal

Posted by admin 5 August, 2008 (0) Comment

Recently, a friend asked me to create an AppleScript that would allow him to automate To-Dos with a Mail.app mail rule. I immediately rose to the occasion because this was a cool idea: Mail.app could run the script when you get an ebill, for instance, for your car payment. The script would then create an iCal To-Do for “Pay your car payment, now!”

The script
set theSumm to “Pay My Bill Soon!”
set dueDate to (current date) + 10 * days
set theUrl to “http://www.paymybillexample.com”
set thepriority to 1

tell application “iCal”
make todo at end of events of (item 1 of every calendar) with properties {summary:theSumm, due date:dueDate, url:theUrl, priority:thepriority}
end tell

Read the rest of this entry

Popularity: 11% [?]

Categories : AppleScript, Features, How-tos Tags : , , , , ,

AppleScript: Integrating shell scripts

Posted by admin 23 June, 2008 (0) Comment

We’ve talked about AppleScript how-tos before. AppleScript is fun and all, but what if you already know how to write shell scripts? Well, did you know that by integrating shells scripts into AppleScript, you can create simple applications that do useful things? It’s true, and I am going to show you how.

Continue reading to learn how to integrate shell scripts into AppleScripts.
Read the rest of this entry

Popularity: 15% [?]

Categories : AppleScript, Features, How-tos Tags : , , , , , , , ,

Mac Automation: Burn a backup disc of recent iPhotos

Posted by admin 17 June, 2008 (0) Comment

Time Machine is great way to backup your entire Mac, but what if you want to make a single backup of your recently imported photos in iPhoto? Well, Automator for Leopard is here to help with this task. In this how-to, I will show you how to find photos taken in the last 2 months and burn the resulting photos to a disc for safe keeping.

Continue reading to learn how to create this Automator workflow.
Read the rest of this entry

Popularity: 8% [?]

Categories : Features, How-tos Tags : , , , , ,

Mac Automation: Using variables in Automator

Posted by admin 14 June, 2008 (0) Comment

Last week I showed you how to use Automator to make a workflow that took photos from your Mac with an iSight and sent them to your Apple TV. That how-to featured one way of using a variable in Automator to let the user name the photo themselves. In this week’s Mac Automation post, I want to go into a little more detail on what variables are and what they can do for your Automator workflows.

Continue reading to learn more about using variables in Automator. Read the rest of this entry

Popularity: 5% [?]

Categories : Features, How-tos Tags : , ,

Mac Automation: take and sync pictures to Apple TV

Posted by admin 3 June, 2008 (0) Comment

Parties can sometimes be boring, but with a Mac with an iSight and an Apple TV, you can liven up any party! In this how-to, I am going to show you how to create an Automator workflow that will take pictures at specified times and sync them over to your Apple TV, all without you ever lifting a finger. This Automator workflow is fantastic when you have people over for a party they can head over to your Mac, take a crazy picture of themselves and have it synced over to the Apple TV in the living room.

Continue reading to learn how to make this Automator workflow. Read the rest of this entry

Popularity: 8% [?]

Categories : Features, How-tos Tags : , , , , , , , ,