<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Automated Workflows, LLC</title>
	<atom:link href="http://www.automatedworkflows.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automatedworkflows.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 23 Feb 2012 04:14:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>AppleScripts for Marking Messages as Read in Mac Mail</title>
		<link>http://www.automatedworkflows.com/2012/02/22/applescripts-for-marking-messages-as-read-in-mac-mail/</link>
		<comments>http://www.automatedworkflows.com/2012/02/22/applescripts-for-marking-messages-as-read-in-mac-mail/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 04:14:31 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=3083</guid>
		<description><![CDATA[At the request of MacSparky, I've put together a few AppleScirpts for Mac Mail users, to mark messages as unread... Script 1: Mail • Mark All Inbox Messages Read tell application "Mail"      set read status of every message of inbox to true end tell Script 2: Mail • Mark All Messages Read display alert "Please note!" message "This script may take a while [...]]]></description>
			<content:encoded><![CDATA[<p>At the request of <a href="http://www.macsparky.com/" target="_blank">MacSparky</a>, I've put together a few AppleScirpts for Mac Mail users, to mark messages as unread...</p>
<h3>Script 1: Mail • Mark All Inbox Messages Read</h3>
<blockquote><p><strong>tell </strong><em>application</em> "Mail"<br />
<strong>     set</strong> read status <strong>of </strong><strong>every </strong><em>message </em><strong>of</strong> inbox <strong>to</strong> true<br />
<strong>end </strong><strong>tell</strong></p></blockquote>
<h3>Script 2: Mail • Mark All Messages Read</h3>
<blockquote><p><strong>display alert</strong> "Please note!" message "This script may take a while if you have a ton of mailboxes. Do you want to continue?" buttons {"Cancel", "Yes"} cancel button "Cancel"</p>
<p><strong>with </strong><strong>timeout </strong><strong>of </strong> 600 <em>seconds<br />
</em><strong>     tell </strong><em>application</em> "Mail"<br />
<strong>          set</strong> read status <strong>of </strong><strong>every </strong><em>message </em><strong>of</strong> inbox <strong>where </strong><strong>its</strong> read status = false <strong>to</strong> true<br />
<strong>          set</strong> read status <strong>of </strong><strong>every </strong><em>message </em><strong>of </strong><strong>every</strong> ¬<br />
<em>               mailbox </em><strong>where </strong><strong>its</strong> read status = false <strong>to</strong> true<br />
<strong>          set</strong> read status <strong>of </strong><strong>every </strong><em>message </em><strong>of </strong><strong>every </strong><em>mailbox ¬</em><br />
<strong>               of </strong><strong>every </strong><em>account </em><strong>where </strong><strong>its</strong> read status = false <strong>to</strong> true<br />
<strong>     end </strong><strong>tell<br />
</strong><strong>end </strong><strong>timeout</strong></p></blockquote>
<h3>Script 3: Mail • Mark Selected Mailbox Messages Read</h3>
<blockquote><p><strong>display alert</strong> "Please note!" message "This script may take a while if you have a lot of mailboxes selected. Do you want to continue?" buttons {"Cancel", "Yes"} cancel button "Cancel"</p>
<p><strong>set</strong> processSubMailboxes <strong>to</strong> (button returned <strong>of</strong> (<strong>display alert</strong> "Would you like to scan all submailboxes too?" message "Again, if you have a lot of selected mailboxes and submailboxes, this may take a while." buttons {"Yes", "No"})) = "Yes"</p>
<p><strong>tell </strong><em>application</em> "Mail"<br />
<strong>     tell </strong><strong>front </strong><em>message viewer<br />
</em><strong><strong>     </strong><strong>     </strong>set</strong> theSelectedMailboxes <strong>to</strong> selected mailboxes<br />
<strong><strong>     </strong><strong>     </strong>repeat </strong><strong>with</strong> a <strong>from</strong> 1 <strong>to</strong> length <strong>of</strong> theSelectedMailboxes<br />
<strong><strong>     </strong><strong>     </strong><strong>     </strong>set</strong> theCurrentMailbox <strong>to </strong><em>item</em> a <strong>of</strong> theSelectedMailboxes<br />
<strong>     </strong><strong>     </strong><strong>     </strong>processMailbox(theCurrentMailbox, processSubMailboxes) <strong>of </strong><strong>me<br />
</strong><strong><strong>     </strong><strong>     </strong>end </strong><strong>repeat<br />
</strong><strong><strong>     </strong>end </strong><strong>tell<br />
</strong><strong>end </strong><strong>tell</strong></p>
<p><strong>on</strong> processMailbox(theMailbox, processSubMailboxes)<br />
<strong><strong>     </strong>tell </strong><em>application</em> "Mail"<br />
<strong><strong>     </strong><strong>     </strong>if</strong> processSubMailboxes = true <strong>then<br />
</strong><strong><strong>     </strong><strong>     </strong><strong>     </strong>set</strong> theSubMailboxes <strong>to </strong><strong>every </strong><em>mailbox </em><strong>of</strong> theMailbox<br />
<strong><strong>     </strong><strong>     </strong><strong>     </strong>repeat </strong><strong>with</strong> a <strong>from</strong> 1 <strong>to</strong> length <strong>of</strong> theSubMailboxes<br />
<strong><strong>     </strong><strong>     </strong><strong>     <strong>     </strong></strong>set</strong> theCurrentSubMailbox <strong>to </strong><em>item</em> a <strong>of</strong> theSubMailboxes<br />
<strong>     </strong><strong>     </strong><strong>     <strong>     </strong></strong>processMailbox(theCurrentSubMailbox, processSubMailboxes) <strong>of </strong><strong>me<br />
</strong><strong><strong>     </strong><strong>     </strong><strong>     </strong>end </strong><strong>repeat<br />
</strong><strong><strong>     </strong><strong>     </strong>end </strong><strong>if<br />
</strong><strong><strong>     </strong><strong>     </strong>set</strong> read status <strong>of </strong><strong>every </strong><em>message </em><strong>of</strong> theMailbox <strong>to</strong> true<br />
<strong><strong>     </strong>end </strong><strong>tell<br />
</strong><strong>end</strong> processMailbox</p></blockquote>
<h3>Usage</h3>
<p>You can download these scripts <a href="http://www.automatedworkflows.com/files/scripts/Mail_MarkReadScripts.zip">here</a>.</p>
<p>You can quickly and easily run them from the system-wide AppleScript menu.  This menu is not enabled by default.  To enable it and install the scripts...</p>
<ol>
<li>Launch AppleScript Editor in <em>/Applications/Utilities</em></li>
<li>Select <em>AppleScript Editor &gt; Preferences</em> from the menu bar</li>
<li>Under <em>General</em>, click the <em>Show Script Menu in the Menu Bar</em> checkbox</li>
<li>Bring Mail to the front</li>
<li>From the script menu, choose <em>Open Scripts Folder &gt; Open Mail Scripts Folder</em></li>
<li>Copy the scripts into the folder.  They will now be available from the script menu when you're working in Mail</li>
</ol>
<p>Enjoy!</p>
<p>-Ben</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/02/22/applescripts-for-marking-messages-as-read-in-mac-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What not to do in Mac Mail</title>
		<link>http://www.automatedworkflows.com/2012/02/17/what-not-to-do-in-mac-mail/</link>
		<comments>http://www.automatedworkflows.com/2012/02/17/what-not-to-do-in-mac-mail/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 14:31:43 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=3070</guid>
		<description><![CDATA[Here's a handy data loss prevention tip.  With a Mail message selected, do not press either of the secret undocumented keyboard shortcuts Option+Control+H or  Command+Option+Control+H.  That is, unless you want your selected message irretrievably deleted.  Not moved to the trash.  Deleted.  Permanently. Tested in Mac OS X 10.7.3. Bug report filed. Note: If you're backing your Mac up [...]]]></description>
			<content:encoded><![CDATA[<p>Here's a handy data loss prevention tip.  With a Mail message selected, <em>do not</em> press either of the secret undocumented keyboard shortcuts <strong>Option+Control+H</strong> or  <strong>Command+Option+Control+H</strong>.  That is, unless you want your selected message irretrievably deleted.  Not moved to the trash.  Deleted.  Permanently.</p>
<blockquote><p>Tested in Mac OS X 10.7.3. Bug report filed.</p>
<p>Note: If you're backing your Mac up with Time Machine, as you should be, then you may be able to restore the vaporized message.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/02/17/what-not-to-do-in-mac-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Mac OS X Productivity Tips for Open and Save Dialogs</title>
		<link>http://www.automatedworkflows.com/2012/02/13/10-mac-os-x-productivity-tips-for-open-and-save-dialogs/</link>
		<comments>http://www.automatedworkflows.com/2012/02/13/10-mac-os-x-productivity-tips-for-open-and-save-dialogs/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 23:50:52 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[opening]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[saving]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=3051</guid>
		<description><![CDATA[They're open and save dialogs. You navigate to a file or folder. You select it.  You enter a file name when saving.  You click Open or Save.  How much more efficient can you get? Well, here are 10 things most Mac users probably don't know... Tip 1: Drag and drop a file or a folder [...]]]></description>
			<content:encoded><![CDATA[<p>They're open and save dialogs. You navigate to a file or folder. You select it.  You enter a file name when saving.  You click Open or Save.  How much more efficient can you get? Well, here are 10 things most Mac users probably don't know...</p>
<p><strong>Tip 1:</strong> Drag and drop a file or a folder right from the Finder into the open or save dialog to quickly select it.  If you do this in a save dialog with a file, then the file's name is automatically entered as the save name.</p>
<p><a href="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_nav.png"><img class="aligncenter size-medium wp-image-3055" title="open_dialog_nav" src="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_nav-300x209.png" alt="" width="300" height="209" /></a></p>
<p><strong>Tip 2:</strong> With a folder or file selected in the dialog, press <strong>Command+R</strong> to bring the Finder to the front and reveal the item.</p>
<p><strong>Tip 3:</strong> To manually navigate to a folder, press <strong>Command+Shift+G</strong> (or <strong>/</strong> or <strong>~</strong>).  Enter the desired path.  As you type it in, you can press tab to auto-complete folder names.<a href="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_nav2.png"><img class="aligncenter size-medium wp-image-3056" title="open_dialog_nav2" src="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_nav2-300x212.png" alt="" width="300" height="212" /></a></p>
<p><strong>Tip 4:</strong> To see hidden files and folders, press <strong>Command+Shift+Period</strong> (<strong>&gt;</strong>).</p>
<p><a href="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_nav3.png"><img class="aligncenter size-medium wp-image-3060" title="open_dialog_nav3" src="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_nav3-300x220.png" alt="" width="300" height="220" /></a></p>
<p><strong>Tip 5:</strong> To quickly navigate to:</p>
<ul>
<li>The Desktop - Press <strong>Command+D</strong></li>
<li>The Documents Folder - Press <strong>Command+Shift+O</strong></li>
<li>The Downloads Folder - Press <strong>Command+Shift+L</strong></li>
<li>The Applications Folder- Press <strong>Command+Shift+A</strong></li>
<li>The Home Folder - Press <strong>Command+Shift+H</strong></li>
</ul>
<blockquote><p>Hint: The other navigation keyboard shortcuts in the Finder's <em>Go</em> menu should work here too.</p></blockquote>
<p><strong>Tip 6:</strong> To create a new folder, press <strong>Command+Shift+N</strong>.</p>
<p><strong>Tip 7:</strong> To navigate up one level, press <strong>Command+Shift+Up Arrow Key</strong></p>
<p><strong>Tip 8:</strong> To choose an image, audio track, or movie, click Media in the sidebar.</p>
<p><a href="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_media.png"><img class="aligncenter size-medium wp-image-3054" title="open_dialog_media" src="http://www.automatedworkflows.com/wp-content/uploads/open_dialog_media-300x230.png" alt="" width="300" height="230" /></a></p>
<p><strong>Tip 9:</strong> To move a file or folder displayed in an open or save dialog to another folder, open the target folder in the Finder.  Then, drag the item from the open or save dialog into the opened folder window in the Finder.</p>
<p><strong>Tip 10:</strong> With a file or folder selected, press <strong>Command+I</strong> to bring the Finder to the front and display the Get Info window for the item.</p>
<p>So, there you have it. Small tips that will save you a few precious seconds here and there and make you more productive.  Every second counts, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/02/13/10-mac-os-x-productivity-tips-for-open-and-save-dialogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macworld &#124; iWorld 2012 Favorite Find: olloclip</title>
		<link>http://www.automatedworkflows.com/2012/02/10/macworld-iworld-2012-favorite-find-olloclip/</link>
		<comments>http://www.automatedworkflows.com/2012/02/10/macworld-iworld-2012-favorite-find-olloclip/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 16:46:58 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[macworld]]></category>
		<category><![CDATA[olloclip]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=3034</guid>
		<description><![CDATA[More and more, my iPhone is becoming my camera of choice.  It takes great photos, and I always have it with me.  This year, at Macworld &#124; iWorld, I was excited to stumble upon the olloclip.  It's a 3-in-1 lens that fits snuggly over your existing iPhone lens.  Included lenses are fisheye, wide-angle, and macro.  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3039" title="olloclip" src="http://www.automatedworkflows.com/wp-content/uploads/IMG_4722.jpg" alt="" width="640" height="480" />More and more, my iPhone is becoming my camera of choice.  It takes great photos, and I always have it with me.  This year, at Macworld | iWorld, I was excited to stumble upon the <a href="http://olloclip.com/" target="_blank">olloclip</a>.  It's a 3-in-1 lens that fits snuggly over your existing iPhone lens.  Included lenses are fisheye, wide-angle, and macro.  I have to say, I love this lens, and highly recommend it for anyone who wants to do more with iPhone photography.  It'll set you back about $70, but it's such a great little accessory, to me, it's well worth the price.</p>
<p>For anyone considering it, here are some observations…</p>
<ul>
<li>The olloclip is tiny.  It will easily fit in your pocket.</li>
<li>It only works with the main iPhone camera (the one on the back of the phone), not the one that faces you.</li>
<li>You access the macro lens by unscrewing the wide-angle lens.  To use the macro lens, you need to get in very close, within about 1/2".</li>
<li>The fisheye lens has an extensive range, so you'll need to grip your iPhone more on the sides if you want to prevent your fingers from being visible along the edges of the photos.</li>
<li>The olloclip is a tight squeeze.  You'll have to remove your phone from its case to use it.  And, if you have a screen protector, it may push it out of the way if you aren't careful.</li>
<li> The olloclip is designed for the iPhone 4/4S.  If Apple releases a new form factor iPhone 5, you'll probably need to purchase a new olloclip, assuming they release an updated version.</li>
<li>The olloclip comes with a small microfiber bag, which doubles as a lens cleaner.</li>
</ul>
<p>In short, I concur with <a href="http://512pixels.net/a-three-word-review-of-the-olloclip/" target="_blank">Stephen Hackett's</a> Three-Word Review of the olloclip… <a href="http://olloclip.com/" target="_blank">Buy it now</a>!</p>
<p>-Ben</p>
<p>olloclip Gallery:</p>
<p><a href="http://www.automatedworkflows.com/wp-content/uploads/IMG_4681.jpg"><img class="size-medium wp-image-3037 alignnone" title="olloclip - fisheye 3" src="http://www.automatedworkflows.com/wp-content/uploads/IMG_4681-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://www.automatedworkflows.com/wp-content/uploads/IMG_4721.jpg"><img class="alignnone size-medium wp-image-3038" title="olloclip - fisheye 2" src="http://www.automatedworkflows.com/wp-content/uploads/IMG_4721-225x300.jpg" alt="" width="225" height="300" /></a><a href="http://www.automatedworkflows.com/wp-content/uploads/IMG_4773.jpg"><img class="alignnone size-medium wp-image-3040" title="olloclip - fisheye" src="http://www.automatedworkflows.com/wp-content/uploads/IMG_4773-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://www.automatedworkflows.com/wp-content/uploads/IMG_4898.jpg"><img class="alignnone size-medium wp-image-3041" title="olloclip - closeup" src="http://www.automatedworkflows.com/wp-content/uploads/IMG_4898-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/02/10/macworld-iworld-2012-favorite-find-olloclip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Available: New Mac Automation Made Simple Videos!</title>
		<link>http://www.automatedworkflows.com/2012/01/27/now-available-new-mac-automation-made-simple-videos/</link>
		<comments>http://www.automatedworkflows.com/2012/01/27/now-available-new-mac-automation-made-simple-videos/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:03:46 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Actions]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Peachpit]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Workflows]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Growl]]></category>
		<category><![CDATA[ical]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[iPhoto]]></category>
		<category><![CDATA[job folders]]></category>
		<category><![CDATA[Mac Automation Made Simple]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[Scheduling]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=3014</guid>
		<description><![CDATA[Peachpit has bundled a new series of my Mac Automation Made Simple videos on Automator.  They're now available for purchase as DRM-Free downloads, so you can play them on your Mac, iPhone, or iPad.  Topics in this 8-part series include: Automate generating job folders - If you use job folders for multiple projects to keep organized, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1000 alignright" title="Automation_150_drop_med" src="http://www.automatedworkflows.com/wp-content/uploads/Automation_150_drop_med.png" alt="" width="131" height="131" />Peachpit has bundled a new series of my <a title="Videos" href="http://www.automatedworkflows.com/tips/videos/">Mac Automation Made Simple videos</a> on Automator.  They're now available for purchase as DRM-Free downloads, so you can play them on your Mac, iPhone, or iPad.  Topics in this 8-part series include:</p>
<ul>
<li><strong>Automate generating job folders</strong> - If you use job folders for multiple projects to keep organized, learn how to save time and reduce errors by building workflows in Automator to create job folders consistently and quickly. You'll also learn the basics of actions and variables in Automator.</li>
<li><strong>Batch-create folders from an Excel list</strong> - If your workflow ever requires you to create a large number of folders or sets of subfolders with specific naming conventions, Excel and Automator can work together to eliminate the manual creation of folders. By using the powerful features in Excel to build lists of file names in large numbers and use Automator to process those lists into hundreds of folders in minutes.</li>
<li><strong>Display Growl notifications for new content</strong> - File sharing over a network is great for larger files that you wouldn't send via email, but how can you be sure that you're always notified when a new file lands in your folder? Learn how to team Automator with the popular notification software <a href="http://growl.info/" target="_blank">Growl</a> to build a great workflow that eliminates the need for you to get an email or phone call notifying you of new files.</li>
<li><strong>Schedule backups via a network</strong> - Do you manually back up your Mac to a server? If so, you've probably had to set up calendar reminders and run through the process on a regular basis or risk losing your data. In this lesson, learn how to make that process automatic and painless with Automator and iCal.</li>
<li><strong>Share files via Dropbox</strong> - Take the powerful PDF tools offered in OS X a step further by building your own Print Plugin with Automator. You'll learn how to set up a Print Plugin that automatically posts any document you print to PDF to the online file sharing tool <a href="http://www.dropbox.com" target="_blank">Dropbox</a>. You'll also learn the basics of setting up actions to rename files to be friendly for upload tools by removing offending characters.</li>
<li><strong>Batch-convert image files to PDF</strong> - If you've ever had the daunting task of scanning a book or a box of images with a flat bed scanner, you know that it isn't easy to combine all those files into a single PDF without some heavy-hitting applications like Photoshop and Acrobat Pro. But what if you don't have those applications or are just looking for an easier way? Learn how to set up a quick and easy way to combine multiple images into a single PDF without the hassle.</li>
<li><strong>Batch-process images for iPhoto</strong> - If you're like most people with a smart phone, an amature photographer or have a large photo digitizing project on your plate, you'll import, manipulate and save hundreds to thousands of images a year. In this lesson, you'll learn how to unleash the power of Automator and free third-party tool to streamline your workflow and make importing images to your iPhoto library a snap.</li>
<li><strong>Batch-process multiple InDesign files to PDF</strong> - Exporting multiple InDesign files to PDF can be as quick and easy as dragging and dropping your files. You'll learn how to create a drag-and-drop application with AppleScript and Automator that opens, exports, names, and saves PDFs from InDesign. You'll be able to use the same custom application for both InDesign CS4 and CS5.</li>
</ul>
<p>Sold as a set, or individually, you can find them on <a href="http://click.linksynergy.com/fs-bin/click?id=0kixpERNWrs&amp;subid=&amp;offerid=145244.1&amp;type=10&amp;tmpid=3565&amp;RD_PARM1=http%253A%252F%252Fwww.peachpit.com%252Fstore%252Fproduct.aspx%253Fisbn%253D0132855364" target="_blank">Peachpit's website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/01/27/now-available-new-mac-automation-made-simple-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Power Users Podcast Episode 070 &#8211; Working with Automator</title>
		<link>http://www.automatedworkflows.com/2012/01/22/mac-power-users-podcast-episode-070-working-with-automator/</link>
		<comments>http://www.automatedworkflows.com/2012/01/22/mac-power-users-podcast-episode-070-working-with-automator/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 02:49:11 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[Interviews]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Actions]]></category>
		<category><![CDATA[David Sparks]]></category>
		<category><![CDATA[Katie Floyd]]></category>
		<category><![CDATA[Mac Power Users]]></category>
		<category><![CDATA[Workflows]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=3006</guid>
		<description><![CDATA[I recently spoke with Katie Floyd and David Sparks about the automation capabilities in Mac OS X for episode 070 of the Mac Power Users podcast.  Topics included getting started with Automator, troubleshooting Automator workflows, Services, and differences between AppleScript and Automator.  Check it out on the Mac Power Users website or in iTunes!]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3009" title="MPU5by5small" src="http://www.automatedworkflows.com/wp-content/uploads/MPU5by5small.jpg" alt="" width="100" height="100" />I recently spoke with <a href="http://www.katiefloyd.me" target="_blank">Katie Floyd</a> and <a href="http://www.macsparky.com/" target="_blank">David Sparks</a> about the automation capabilities in Mac OS X for episode 070 of the Mac Power Users podcast.  Topics included getting started with Automator, troubleshooting Automator workflows, Services, and differences between AppleScript and Automator.  Check it out on the <a href="http://macpowerusers.com/2012/01/mpu-070-working-with-automator/" target="_blank">Mac Power Users website</a> or in <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=458066753" target="_blank">iTunes</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/01/22/mac-power-users-podcast-episode-070-working-with-automator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacIT &#124; Macworld &#124; iWorld Discounts</title>
		<link>http://www.automatedworkflows.com/2012/01/13/macit-macworld-iworld-discounts/</link>
		<comments>http://www.automatedworkflows.com/2012/01/13/macit-macworld-iworld-discounts/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 05:40:04 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Macworld]]></category>
		<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=2999</guid>
		<description><![CDATA[Planning to attend MacIT &#124; Macworld &#124; iWorld 2012?  Here are some discount codes you can use when registering... Save $25 on my Mac OS X Automation Workshop using priority code CCU18842 Save $50 on an All Access Pass or MacIT Conference Pass using priority code BTR34210 Get a free exhibit hall pass (limited to the first 100 [...]]]></description>
			<content:encoded><![CDATA[<p>Planning to attend <a href="http://www.macitconf.com/" target="_blank">MacIT</a> | <a href="http://www.macworldiworld.com/" target="_blank">Macworld</a> | <a href="http://www.macworldiworld.com/" target="_blank">iWorld</a> 2012?  Here are some discount codes you can use when registering...</p>
<ul>
<li>Save $25 on my Mac OS X Automation Workshop using priority code <strong>CCU18842</strong></li>
<li>Save $50 on an All Access Pass or MacIT Conference Pass using priority code <strong>BTR34210</strong></li>
<li>Get a free exhibit hall pass (limited to the first 100 applicants) or save $15 on an iFan Pass using priority code <strong>BSU47117</strong></li>
</ul>
<div>You can register <a href="https://register.rcsreg.com/r2/macit2012/ga/index2.html" target="_blank">here</a>.  Hope to see you there!</div>
<div>-Ben Waldie</div>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/01/13/macit-macworld-iworld-discounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automation and Productivity Sessions at Macworld &#124; iWorld 2012</title>
		<link>http://www.automatedworkflows.com/2012/01/08/automation-and-productivity-sessions-at-macworld-iworld-2012/</link>
		<comments>http://www.automatedworkflows.com/2012/01/08/automation-and-productivity-sessions-at-macworld-iworld-2012/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 17:53:00 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Macworld]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[iWorld]]></category>
		<category><![CDATA[MacIT]]></category>
		<category><![CDATA[macworld]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Workflows]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=2974</guid>
		<description><![CDATA[Well, it's that time of year again. Folks are gearing up for Macworld San Francisco. This year, the conference has been renamed Macworld &#124; iWorld, and a secondary conference has been added specifically for MacIT. As usual, I'll be there, presenting a number of sessions on automation and productivity. Here's the list of my sessions... [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it's that time of year again. Folks are gearing up for Macworld San Francisco. This year, the conference has been renamed Macworld | iWorld, and a secondary conference has been added specifically for MacIT. As usual, I'll be there, presenting a number of sessions on automation and productivity. Here's the list of my sessions...</p>
<p><img class="size-full wp-image-2988" title="mac_it_logo" src="http://www.automatedworkflows.com/wp-content/uploads/mac_it_logo.gif" alt="" width="142" height="60" /><br />
<strong>MacIT Sessions</strong></p>
<ul>
<li>Thursday, 1/26, 10:20-11:05AM: <a href="http://www.macitconf.com/thursday" target="_blank">IT801 - User Interface Automation</a></li>
<li>Saturday, 1/29, 11:30AM-12:15PM: <a href="http://www.macitconf.com/saturday" target="_blank">IT8122 - Quick Scripts and Workflows to Improve User Productivity</a></li>
</ul>
<p style="text-align: left;">[More info about <a href="http://www.macitconf.com" target="_blank">MacIT</a>]</p>
<p><img class="size-full wp-image-2987" title="2012_macworld" src="http://www.automatedworkflows.com/wp-content/uploads/2012_macworld.png" alt="" width="199" height="65" /><br />
<strong>Macworld | iWorld Sessions</strong></p>
<ul>
<li>Wednesday, 1/25, 10AM-5PM: <a href="http://www.macworldiworld.com/ifan/premium-training/workshops/#WC" target="_blank">WC - Mac OS X Automation Workshop</a></li>
<li>Thursday, 1/26, 5-7PM: <a href="http://www.macworldiworld.com/techtalks/thursday-overview/thursday-agenda/#RF" target="_blank">Rapid Fire - Building a Killer Automator Workflow</a></li>
<li>Friday, 1/27, 3-3:45PM: <a href="http://www.macworldiworld.com/techtalks/friday-overview/friday-agenda/#997" target="_blank">TT997 - Becoming an Email Ninja</a></li>
</ul>
<p>If you're planning to attend my workshop, you can save $25 using priority code <strong>CCU18842</strong> and registering <a href="https://register.rcsreg.com/r2/macsf2012/ga/index2.html" target="_blank">here</a>.</p>
<p style="text-align: left;">[More info about <a href="http://www.macworldiworld.com/" target="_blank">Macworld | iWorld</a>]</p>
<p>Going to be there too? If so, be sure to find me and introduce yourself.</p>
<p>Hope to see you there.</p>
<p>-Ben Waldie</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2012/01/08/automation-and-productivity-sessions-at-macworld-iworld-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion: The Missing Manual Details Services, Automator, and AppleScript</title>
		<link>http://www.automatedworkflows.com/2011/11/18/mac-os-x-lion-the-missing-manual-details-services-automator-and-applescript/</link>
		<comments>http://www.automatedworkflows.com/2011/11/18/mac-os-x-lion-the-missing-manual-details-services-automator-and-applescript/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 13:55:17 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Actions]]></category>
		<category><![CDATA[David Pogue]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[Missing Manual]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Workflows]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=2951</guid>
		<description><![CDATA[From the Acknowledgements page... "Ben Waldie… did a beautiful job updating the Automator/AppleScript material in Chapter 7" - David Pogue "Thank you, David, for the opportunity to contribute to such a complete resource on the world's greatest operating system!" -Ben Waldie Looking for a great comprehensive book on Mac OS X, which covers everything including [...]]]></description>
			<content:encoded><![CDATA[<p>From the Acknowledgements page...</p>
<blockquote><p><em>"Ben Waldie… did a beautiful job updating the Automator/AppleScript material in Chapter 7"</em><br />
- David Pogue</p></blockquote>
<blockquote><p><em>"Thank you, David, for the opportunity to contribute to such a complete resource on the world's greatest operating system!"</em><br />
-Ben Waldie</p></blockquote>
<p>Looking for a great comprehensive book on Mac OS X, which covers everything including powerful built-in automation tools such as Services, Automator, and AppleScript?  Look no further.  Get your copy today!</p>
<ul>
<li><a title="Paperback" href="http://www.amazon.com/gp/product/1449397492/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=benjaswaldisappl&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1449397492" target="_blank">Paperback</a></li>
<li><a title="iBookstore" href="http://click.linksynergy.com/fs-bin/click?id=0kixpERNWrs&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fbook%2Fmac-os-x-lion-the-missing%2Fid474241425%3Fmt%3D11" target="_blank">iBookstore</a></li>
<li><a title="Kindle" href="http://www.amazon.com/gp/product/B005XE5AFS/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=benjaswaldisappl&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B005XE5AFS" target="_blank">Kindle</a></li>
</ul>
<p><a title="Paperback" href="http://www.amazon.com/gp/product/1449397492/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=benjaswaldisappl&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1449397492" target="_blank"></a></p>
<p><strong>Mac OS X Lion: The Missing Manual</strong><br />
<em>David Pogue</em></p>
<p><img class="alignleft size-medium wp-image-2954" title="Mac OS X Lion: The Missing Manual" src="http://www.automatedworkflows.com/wp-content/uploads/lrg-228x300.jpg" alt="" height="110" />With Lion, Apple has unleashed the most innovative version of Mac OS X yet—and once again, David Pogue brings his humor and expertise to the #1 bestselling Mac book. Mac OS X 10.7 completely transforms the Mac user interface with multi-touch gestures borrowed from the iPhone and iPad, and includes more than 250 brand-new features. This book reveals them all with a wealth of insight and detail--and even does a deep dive into iCloud, Apple's wireless, free syncing service for Macs, PCs, iPhones, and iPads.</p>
<ul>
<li>Perfect for newcomers. Get crystal-clear, jargon-free introduction to the Dock, the Mac OS X folder structure, Safari, Mail, and iCloud.</li>
<li>Go in-depth. Learn how use key new features such as full-screen apps, Mission Control, the new Mac App Store, Launchpad, Resume, Auto Save, Versions, AirDrop, and more. Are you even more of a power user? Learn to set up a network, make a Lion flash drive, and even learn the basics of Lion's underlying Unix.</li>
</ul>
<p>There's something new on practically every page of this new edition, and David Pogue brings his celebrated wit and expertise to every one of them. Apple's brought a new cat to town, and Mac OS X Lion: The Missing Manual is the best way to tame it.</p>
<p><strong>About David Pogue</strong></p>
<p><img class="alignleft size-medium wp-image-2955" title="David Pogue" src="http://www.automatedworkflows.com/wp-content/uploads/pogue-198x300.jpg" alt="" height="110" />David Pogue is the personal-technology columnist for the New York Times. Each week, he contributes a print column, an online column and an online video. His daily blog, "Pogue's Posts," is the Times's most popular blog. David is also an Emmy award-winning tech correspondent for CBS News and a frequent guest on NPR's "Morning Edition." His trademark comic tech videos appear each Thursday morning on CNBC. With over 3 million books in print, David is one of the world's bestselling how-to authors. He launched his own series of complete, funny computer books called the Missing Manual series, which now includes 60 titles. David graduated summa cum laude from Yale in 1985, with distinction in Music, and he spent ten years conducting and arranging Broadway musicals in New York. He's been profiled on both "48 Hours" and "60 Minutes."</p>
<p><strong>About Ben Waldie</strong></p>
<p><img class="alignleft size-medium wp-image-2309" title="Ben Waldie" src="http://www.automatedworkflows.com/wp-content/uploads/Ben_Waldie-300x300.jpg" alt="" height="110" />Ben Waldie is president of Automated Workflows, LLC, a company offering AppleScript, Automator, and workflow consulting services to Mac-based businesses. For years, Ben has developed professional automated solutions for companies such as Abercrombie &amp; Fitch, Adobe Systems, Apple Inc., CNN, Microsoft, NASA, PC World, and Time Magazine. Ben is the author of “Automator for Mac OS X: Visual QuickStart Guide" (Peachpit Press) and “AppleScripting the Finder" (Automated Workflows, LLC), has written content for Apple.com, Macworld, MacTech, MacScripter.net, and more, and is the host of the “Mac Automation Made Simple" video podcast series (Peachpit Press). Ben is also the author of an AppleScript training CD for the Virtual Training Company, and is a frequent presenter at Macworld and other industry events.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2011/11/18/mac-os-x-lion-the-missing-manual-details-services-automator-and-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File and Folder Automator Actions Released in the Mac App Store</title>
		<link>http://www.automatedworkflows.com/2011/11/16/file-and-folder-automator-actions-released-in-the-mac-app-store/</link>
		<comments>http://www.automatedworkflows.com/2011/11/16/file-and-folder-automator-actions-released-in-the-mac-app-store/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 03:40:23 +0000</pubDate>
		<dc:creator>Ben Waldie</dc:creator>
				<category><![CDATA[Automator Actions]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Mac App Store]]></category>
		<category><![CDATA[products]]></category>

		<guid isPermaLink="false">http://www.automatedworkflows.com/?p=2942</guid>
		<description><![CDATA[I'm still working hard on updated Automator action packs. I'm pleased to announce that my File and Folder Automator Action Pack, which includes 21 actions for interacting with files and folders in the Finder has been released in the Mac App Store. It can be found here. -Ben]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-2271" title="FileFolderPack_110x110" src="http://www.automatedworkflows.com/wp-content/uploads/FileFolderPack_110x110.png" alt="" width="110" height="110" />I'm <a href="http://www.automatedworkflows.com/2011/07/11/text-automator-actions-for-lion-and-snow-leopard/">still</a> working hard on updated Automator action packs.  I'm pleased to announce that my File and Folder Automator Action Pack, which includes 21 actions for interacting with files and folders in the Finder has been released in the Mac App Store.  It can be found <a href="http://click.linksynergy.com/fs-bin/click?id=0kixpERNWrs&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Ffile-folder-automator-action%2Fid479445983%3Fmt%3D12">here</a>.</p>
<p>-Ben</p>
]]></content:encoded>
			<wfw:commentRss>http://www.automatedworkflows.com/2011/11/16/file-and-folder-automator-actions-released-in-the-mac-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

