<?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>CampSoftware &#187; Dragon</title>
	<atom:link href="http://campsoftware.com/tag/dragon/feed/" rel="self" type="application/rss+xml" />
	<link>http://campsoftware.com</link>
	<description>Small Business Software by FileMaker Certified Developers</description>
	<lastBuildDate>Wed, 01 Feb 2012 20:25:46 +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>Using iPhone Dragon Dictation with Things</title>
		<link>http://campsoftware.com/2010/03/using-iphone-dragon-dictation-with-things/</link>
		<comments>http://campsoftware.com/2010/03/using-iphone-dragon-dictation-with-things/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 15:06:48 +0000</pubDate>
		<dc:creator>Hal Gumbert</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Dictation]]></category>
		<category><![CDATA[Dragon]]></category>
		<category><![CDATA[Dragon Dictation]]></category>
		<category><![CDATA[Getting Things Done]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Things]]></category>
		<category><![CDATA[To Do]]></category>

		<guid isPermaLink="false">http://campsoftware.com/?p=594</guid>
		<description><![CDATA[I&#8217;ve been interested in adding items to my Things To Do list while away from my computer with out typing them. Typing is a pain. The steps to do this...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been interested in adding items to my <a href="http://click.linksynergy.com/fs-bin/stat?id=mMpEIZ9UOvM&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fthings%252Fid284971781%253Fmt%253D8%2526uo%253D6%2526partnerId%253D30" target="_blank">Things</a> To Do list while away from my computer with out typing them. Typing is a pain. The steps to do this are:</p>
<ul>
<li>Open <a href="http://click.linksynergy.com/fs-bin/stat?id=mMpEIZ9UOvM&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fdragon-dictation%252Fid341446764%253Fmt%253D8%2526uo%253D6%2526partnerId%253D30" target="_blank">Dragon Dictation</a> on the iPhone.</li>
<li>Tap the button to do something with the note.</li>
<li>Press Email.</li>
<li>Press Send. If you set your iPhone to automatically BCC yourself on all emails you don&#8217;t need to type in your email address as the TO recipient. Also, don&#8217;t bother adding a subject. You&#8217;ll know that it is a To Do since it is from you and the Subject is blank.</li>
<li>The email will go out and end up in your email inbox.</li>
<li>Setup a Mail rule to look for the email message from Dragon and then add it to Things and then file the email, or auto delete it.</li>
</ul>
<p>That&#8217;s it. My Mail rule looks like this.</p>
<p><a href="http://campsoftware.com/wp-content/uploads/2010/03/ThingsMailRule.png"><img class="alignnone size-full wp-image-595" title="ThingsMailRule" src="http://campsoftware.com/wp-content/uploads/2010/03/ThingsMailRule.png" alt="" width="555" height="327" /></a></p>
<p>As you can see, it looks for emails that have an blank subject and from me. If an incoming message arrives, it will move the message to a folder to get it out of my inbox. Then it changes the color to yellow, so I know it was processed. Then it runs the following AppleScript. The last action prevents Mail from applying other actions.</p>
<p>The AppleScript below could be shorter, but I&#8217;ve been experimenting with different options. I set several TheWhatever variables so that I can choose what content goes into the Thing Title and Note. You&#8217;ll see TheSubject, TheSubject2, and TheSubject3. Only one of those are really needed, but I kept the prior ones in case I wanted to go back to a prior value.</p>
<p>This version is what I use today. It ends up creating a new Thing that takes the first line/paragraph of the Email body as the Thing Title and the Thing Note is the entire Email Body. This keeps the Thing Title as short as possible and usually ends up being the entire note that you dictated. Finally, there&#8217;s some AppleScript code to show a Growl notification.</p>
<blockquote><p><strong>on</strong> perform_mail_action(info)</p>
<p><strong>tell</strong> <em>application</em> &#8220;Mail&#8221;</p>
<p><strong>using terms from</strong> <em>application</em> &#8220;Mail&#8221;</p>
<p><strong>set</strong> selectedMails <strong>to</strong> |SelectedMessages| <strong>of</strong> info</p>
<p><strong>repeat</strong> <strong>with</strong> eachMessage <strong>in</strong> selectedMails</p>
<p><strong>set</strong> <strong>the</strong> selected_message <strong>to</strong> <em>item</em> 1 <strong>of</strong> eachMessage</p>
<p><strong>set</strong> message_id <strong>to</strong> <strong>the</strong> message id <strong>of</strong> <strong>the</strong> eachMessage</p>
<p><strong>set</strong> message_url <strong>to</strong> &#8220;message:/&#8221; &amp; message_id &amp; &#8220;  &#8221;</p>
<p><strong>set</strong> TheSender <strong>to</strong> <strong>the</strong> sender <strong>of</strong> <strong>the</strong> eachMessage</p>
<p><strong>set</strong> TheSubject <strong>to</strong> <strong>the</strong> subject <strong>of</strong> <strong>the</strong> eachMessage</p>
<p><strong>set</strong> TheSubject2 <strong>to</strong> <strong>the</strong> subject <strong>of</strong> <strong>the</strong> eachMessage &amp; &#8221; (&#8221; &amp; <strong>the</strong> sender <strong>of</strong> <strong>the</strong> eachMessage &amp; &#8220;)&#8221;</p>
<p><strong>set</strong> theBody <strong>to</strong> <strong>the</strong> content <strong>of</strong> <strong>the</strong> eachMessage</p>
<p><strong>set</strong> theBody2 <strong>to</strong> &#8220;From: &#8221; &amp; <strong>the</strong> sender <strong>of</strong> <strong>the</strong> eachMessage &amp; (<strong>ASCII character</strong> 13) &amp; (<strong>ASCII character</strong> 13) &amp; <strong>the</strong> content <strong>of</strong> <strong>the</strong> eachMessage</p>
<p><strong>set</strong> TheSubject3 <strong>to</strong> <strong>the</strong> <strong>first</strong> <em>paragraph</em> <strong>of</strong> theBody</p>
<p><strong>tell</strong> <em>application</em> &#8220;Things&#8221;</p>
<p><strong>set</strong> newToDo <strong>to</strong> <strong>make</strong> new <em>to do</em> with properties {name:TheSubject3, notes:theBody} &#8212; at beginning of person &#8220;Hal&#8221;</p>
<p><strong>move</strong> newToDo to <em>list</em> &#8220;Today&#8221;</p>
<p><strong>end</strong> <strong>tell</strong></p>
<p><strong>tell</strong> <em>application</em> &#8220;GrowlHelperApp&#8221;</p>
<p><strong>set</strong> <strong>the</strong> allNotificationsList <strong>to</strong> ¬</p>
<p>{&#8220;Task Created&#8221;}</p>
<p><strong>set</strong> <strong>the</strong> enabledNotificationsList <strong>to</strong> ¬</p>
<p>{&#8220;Task Created&#8221;}</p>
<p><strong>register</strong> as application ¬</p>
<p>&#8220;Create Task from Multiple Mail (Growl Enabled)&#8221; all notifications allNotificationsList ¬</p>
<p>default notifications enabledNotificationsList ¬</p>
<p>icon of application &#8220;Things&#8221;</p>
<p><strong>notify</strong> with name ¬</p>
<p>&#8220;Task Created&#8221; title ¬</p>
<p>&#8220;Task created in Things&#8221; description ¬</p>
<p>TheSubject application name &#8220;Create Task from Multiple Mail (Growl Enabled)&#8221;</p>
<p><strong>end</strong> <strong>tell</strong></p>
<p><strong>end</strong> <strong>repeat</strong></p>
<p><strong>end</strong> <strong>using terms from</strong></p>
<p><strong>end</strong> <strong>tell</strong></p>
<p><strong>end</strong> perform_mail_action</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://campsoftware.com/2010/03/using-iphone-dragon-dictation-with-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

