<?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>Veritrope &#187; tutorial</title>
	<atom:link href="http://veritrope.com/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://veritrope.com</link>
	<description>Tech, Arts, Travel</description>
	<lastBuildDate>Mon, 05 Jul 2010 09:46:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='veritrope.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Learn To Speak AppleScript, Part 2: Baby Steps</title>
		<link>http://veritrope.com/tips/learn-to-speak-applescript-part-2/</link>
		<comments>http://veritrope.com/tips/learn-to-speak-applescript-part-2/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 01:00:33 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Mail]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=3946</guid>
		<description><![CDATA[Part Two of a short tutorial on how AppleScript can streamline your work, make you more productive, and save you time!  This lesson focuses on how to plan a new script and prepare to write it!]]></description>
			<content:encoded><![CDATA[<blockquote>
<h3><a href="http://veritrope.com/tips/learn-to-speak-applescript" >Click Here To Read Part One of &#8220;Learn To Speak AppleScript&#8221;</a></h3>
</blockquote>
<p><img src="http://media.veritrope.com/wp-content/uploads/2009/11/apple_script.gif" alt="" title="applescript"  class="alignright size-full wp-image-3566" /><br />
To recap the end of <a href="http://veritrope.com/tips/learn-to-speak-applescript" >Part One</a>, your goal will be to build a script that will save your emails as text files.   The actual programming will be covered in Part Three and, when we get there, I&#8217;ll try to stay more &#8220;conceptual&#8221;.</p>
<p><em>My goal</em> will be to give you a feel for how an AppleScript does its job &#8212; but still include enough real-life code to keep it interesting for more experienced scripters (or for people who came here from a search engine looking for a bit of code to get their scripts up and running!)</p>
<p>But, if you <em>are</em> a beginner, don&#8217;t let those computer code snippets intimidate you!  They are included primarily so that you can see what a real-life Script looks like and not with any expectation that you master the intricacies of the AppleScript language.</p>
<p>After all, this is really an exercise in teaching you the fundamentals of <em>thinking and speaking</em> AppleScript.  In other words, this is going to be more like an English class in literature where we talk about books and what they mean &#8212; and <strong>not</strong> a grammar lesson.</p>
<p>In fact, that metaphor is actually a pretty good way to get started!<br />
<span id="more-3946"></span></p>
<h3>The First Step Is Between Your Ears</h3>
<p>As I mentioned in Part One, AppleScript is an &#8220;English-like&#8221; programming language.</p>
<p>What we are going to do in this lesson is to state our goals as clearly as we can &#8212; and do so in plain, everyday language.  Once we&#8217;ve done that, we&#8217;ll set about writing an AppleScript that matches up with that description.</p>
<blockquote><p>
<strong>Rule #1:</strong><br />
<em>First, we say it in English&#8230;. then we say it in &#8220;English-like&#8221;.</em>
</p></blockquote>
<p>Writing a good AppleScript is like&#8230;.  (wait for it) &#8230;. <em>writing a good <strong>anything</strong>!</em></p>
<p>Most things that are well-written have probably started from a place of being <em>well-thought-out</em>, right?  That&#8217;s not to say that you won&#8217;t discover some fun, unexpected stuff along the way &#8212; but <strong>actions begin with intentions</strong>.  My experience is this: The clearer you are about your intentions when you start, the more you&#8217;ll make the right choices along the way.<sup>1</sup></p>
<p>And the more likely you&#8217;ll end up with <em>a working thing</em> at the end of your journey.</p>
<h1>The Goal of the Script (In Plain English)</h1>
<p>First, we need to state our overall goal as clearly as we can.  For this first sample script, that goal is:</p>
<blockquote><p><strong>&#8220;I want a script that will save emails as text files.&#8221;</strong></p></blockquote>
<h3>The Basic Elements We&#8217;ll Need In the Script:</h3>
<p>Now that we know <em>what we want to do</em>, we&#8217;ll flesh out the details more fully:<br />
<span class="pullquote"><!--First, We Say It In English.... Then We Say It In "English-Like".--></span></p>
<ol>
<li>I use the Apple Mail application to read my emails.</li>
<li>I want to be able to save emails as text files.</li>
<li>I want to be able to save more than one email at a time.</li>
<li>I want to be able to control where the text files are saved to.</li>
<li>I want the new text files to have distinctive names so that I can tell them apart more easily.</li>
<li>I want the script to come up with those names so that I don&#8217;t have to do it for each file.</li>
</ol>
<h3>&#8220;I Four Years Old!&#8221;</h3>
<p>You&#8217;ll notice how explicit I was in calling out each part of what I wanted to do.</p>
<p><strong>This way of thinking in terms of &#8220;baby steps&#8221; towards your overall goal is probably the most important thing you can take from this lesson.</strong></p>
<p>Here&#8217;s why &#8212; AppleScript is great, but teaching it to do what you want it to do can be like <em>trying to teach a child</em>.   You really need to try and see things through the eyes of a kid (or, in this case, a computer that knows only what you tell it) in order to know how to communicate.</p>
<blockquote><p>
<strong>Rule #2:</strong><br />
<em>AppleScript is like an energetic child.  It&#8217;s eager to please &#8212; but in need of clear, constant direction.</em></p></blockquote>
<p>It reminds me a bit of that old Bill Cosby comedy routine about a kid named Jeffery:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/Fs0cYJUqJys&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Fs0cYJUqJys&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>If you have any hope of getting off the plane with your sanity intact, you&#8217;re going to have to learn how to translate your adult language into something a kid can understand.  That is to say, it&#8217;s something <em>you&#8217;re absolutely going to be able to do</em> &#8212; it&#8217;s just going to take a brief transition while you take a deep breath and mentally switch gears from your language and into theirs.</p>
<h3>Sometimes, Kids Just Don&#8217;t Understand</h3>
<p>I&#8217;ll make one more point using the &#8220;Talking To Kids Metaphor&#8221; as we end Part Two&#8230;</p>
<p>Every kid is different.<br />
Some are barely able to tie their shoes.<br />
Some come up to you and, unprompted, freak you out by asking if you&#8217;re an <a target="_blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3Dexistentialist%26url%3Dsearch-alias%253Daps&#038;tag=veritrope-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957" >existentialist</a><img src="https://www.assoc-amazon.com/e/ir?t=veritrope-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />.</p>
<p>In the world of AppleScript, each of the applications on your Mac &#8212; programs like Apple Mail, Firefox, Evernote, iCal, etc. &#8212; are like kids at different grade levels.  And, although you can sometimes guess, you&#8217;ll never really know<em> which type of kid it is</em> until you start talking to them and figure out their vocabulary level.</p>
<p>And this is the point where, thankfully, reality departs from the metaphor:  In the computer world, you can<em> actually see which words an application knows ahead of time</em> &#8212; sparing you painful, Jeffery-like conversations.  When it comes to speaking AppleScript, each program keeps a list of the vocabulary it knows in <strong>an AppleScript Dictionary</strong>. (Easy to remember, right?)</p>
<h3>Ready To Talk?</h3>
<p>In Part Three, we&#8217;ll open up that dictionary and start having an AppleScript conversation with a fairly &#8220;well-spoken&#8221; kid on the Application playground &#8212; Apple Mail!</p>
<ol class="footnotes"><li id="footnote_0_3946" class="footnote">I&#8217;d like to welcome everyone to the Veritrope.com &#8220;Den of Zen&#8221;&#8230;</li></ol>]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/learn-to-speak-applescript-part-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Mac Users &#8212; Want To Get Things Done Faster? Learn to Speak AppleScript!</title>
		<link>http://veritrope.com/tips/learn-to-speak-applescript/</link>
		<comments>http://veritrope.com/tips/learn-to-speak-applescript/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:04:24 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Mail]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=3560</guid>
		<description><![CDATA[Part One of a short tutorial on how AppleScript can streamline your work, make you more productive, and save you time!]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.veritrope.com/wp-content/uploads/2009/11/apple_script.gif" alt="" title="applescript"  class="alignright size-full wp-image-3566" /><br />
<strong>Here&#8217;s something for both new and experienced Mac users &#8212; Part One of a short tutorial on how AppleScript can streamline your work, make you more productive, and save you time!</strong></p>
<h3>What Exactly <em>is</em> AppleScript?</h3>
<p>AppleScript is an English-like language used to write programs that control applications on your computer.  The &#8220;English-like&#8221; part is important &#8212; <em>it means that you don&#8217;t need to have a computer science degree to use it.</em><br />
<strong><br />
<blockquote>Simply put, it&#8217;s programming for regular people who want to <em>get things done faster</em>.</p></blockquote>
<p></strong><br />
<span id="more-3560"></span><br />
The programs that you write in AppleScript are called &#8220;scripts&#8221; (you saw that coming, right?).  Much like the script for a movie, an AppleScript is really just a list of instructions for your computer to follow.  It&#8217;s kind of like saying to your Mac, &#8220;Okay &#8212; when I say <em>this</em>, you need to <strong>do X, Y, and Z</strong>.&#8221;  Honestly, that&#8217;s all that <i>scripting</i> means&#8230;  giving your Mac a To-Do list.</p>
<p><strong>Best of all, it&#8217;s free!</strong>  Apple generously includes several tools that you&#8217;ll need to get started with automating tasks on your Mac &#8212; including the AppleScript Editor, which is used to write and save new AppleScripts for your computer to follow.</p>
<h3>What is AppleScript Good For?</h3>
<p>If you&#8217;ve ever known the soul-sucking drudgery of having to perform the same tasks over-and-over again on your computer, then AppleScript is for you!  <strong>AppleScript automates repetitive tasks for you.</strong>  So, instead of wasting time doing everything by hand, your computer does it for you&#8230;</p>
<p>(This is, after all, what they are <em><strong>supposed to do</strong> in the first place</em>. <img src='http://veritrope.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  )</p>
<p>Need to change the names of 100 files?  You can either spend <em>the next hour clicking and typing yourself into <strong>carpal-tunnel-induced dementia</strong><sup>1</sup> </em> &#8212; or spend 2 minutes to write a script, click a button, and it&#8217;s done!</p>
<p>Most programs on the Mac have at least some level of support for AppleScript and, if you look around <a href="http://veritrope.com" >Veritrope.com</a>, you&#8217;ll see <a href="http://veritrope.com/tag/applescript" >AppleScripts</a> that I&#8217;ve written to work with (and to connect together) many popular Mac applications.   There are literally thousands of AppleScripts available to automate your system (most of them free!).</p>
<p>And, if by some chance you can&#8217;t find a script that someone else has written to automate a particular task, it really is easy enough to write one for yourself.</p>
<h3>How do I learn AppleScript?</h3>
<p>People often write me asking &#8220;How did you learn AppleScript?&#8221;</p>
<p>The simple answer is that I started <em><strong>reading</strong> AppleScripts</em> written by people who knew what they were doing.  The more that I read, the more I understood what was possible &#8212; and also some of the things you needed to make a working script.</p>
<p>
In other words &#8212; <strong><span class="pullquote">Before I could really speak AppleScript, I started to learn how to **THINK** AppleScript</span></strong>.  It&#8217;s really not any different than if you were dropped into a place where you didn&#8217;t know the language.  You&#8217;d probably understand what the people around you <em>were getting at</em> &#8212;   long before you learned enough of the language to make yourself understood.
</p>
<h3>How To Learn The Language</h3>
<p>
The quasi-official <a target="_blank" href="http://www.macosxautomation.com/" >macosxautomation.com</a> site is probably the best place to get started.  It has <strong>lots</strong> of introductory tutorials and code examples for the beginning AppleScripter &#8212; but also some great introductions to other utilities that really set the Mac apart (like Automator and Services).</p>
<p>People like <a target="_blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3Dben%2520waldie%26url%3Dsearch-alias%253Daps&#038;tag=veritrope-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957" >Ben Waldie</a><img src="https://www.assoc-amazon.com/e/ir?t=veritrope-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (a guru of AppleScript and <a target="_blank" href="http://www.automatedworkflows.com/" >Mac Automation</a>) &#8212; as well as any number of people who post on <a target="_blank" href="http://macscripter.net/" >the MacScripter forum</a> &#8212; also really helped me get going.  I was truly inspired by their projects&#8230; and also by the community that they maintained to help new people like me get started.</p>
<p>As I started to <em>really</em> get more into it, I also found some great <a target="_blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3DAppleScript%26url%3Dsearch-alias%253Daps&#038;tag=veritrope-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957" >books about AppleScript</a><img src="https://www.assoc-amazon.com/e/ir?t=veritrope-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (Especially <a target="_blank" href="http://www.amazon.com/gp/product/0321149319?ie=UTF8&#038;tag=veritrope-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0321149319" >Sal Soghoian&#8217;s &#8220;AppleScript 1-2-3&#8243;</a><img src="http://www.assoc-amazon.com/e/ir?t=veritrope-20&#038;l=as2&#038;o=1&#038;a=0321149319" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />)</p>
<h3>Learning How To Think</h3>
<p>All of the resources that I just mentioned are <strong><em>the</em></strong> places to learn the actual ins-and-outs of programming in AppleScript&#8230; Honestly, you really can&#8217;t do much better than all of these great, talented teachers!  Read what they have to say &#8212; and they&#8217;ll whip your scripting vocabulary and programming grammar into shape before you know it!</p>
<p>What I&#8217;d like to do here is a little different: I want to try and <em><strong>teach you how to think in AppleScript</strong></em> so that, while you&#8217;re learning from these great resources, you&#8217;ll have an existing framework for understanding what they&#8217;re trying to teach you.  That way when it comes time to write your own scripts, you&#8217;ll hopefully have a stronger sense of what your looking for and, what&#8217;s more, the types of scripts you&#8217;ll need to put together to make it all work.</p>
<p>In <a href="http://veritrope.com/tips/learn-to-speak-applescript-part-2" >Part Two of this series</a>, we&#8217;re going to start to build our first sample script: <strong>An AppleScript that will save your emails as text files!</strong></p>
<ol class="footnotes"><li id="footnote_0_3560" class="footnote">This is not a real condition&#8230;I hope!</li></ol>]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/learn-to-speak-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Services Menu Building (and building&#8230; and building&#8230; )</title>
		<link>http://veritrope.com/tips/snow-leopard-services-menu-building-and-building-and-building/</link>
		<comments>http://veritrope.com/tips/snow-leopard-services-menu-building-and-building-and-building/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 21:21:14 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Onyx]]></category>
		<category><![CDATA[OS X 10.6]]></category>
		<category><![CDATA[PBS]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2655</guid>
		<description><![CDATA[Having trouble with your Snow Leopard Services menu telling you that it's building (but never finishing)?  Here are a few things you can try!]]></description>
			<content:encoded><![CDATA[<p><img src="http://veritrope.com/wp-content/uploads/2009/10/services1.png" alt="services" /><br />
Having trouble with your Snow Leopard Services menu telling you that it&#8217;s building (but never finishing)?  Here are a few things you can try&#8230; (UPDATED!)<br />
<span id="more-2655"></span></p>
<ul>
<li><strong>Rescan Your Services.</strong><br />
<a target="_blank" href="http://codelahoma.com/" >Rod Knowlton</a> made an excellent contribution in the comment thread below &#8212; Using the PBS tool to force a rescan of Snow Leopard&#8217;s Services.  This seems to be working well for most people, so I wanted to add it to the top of the list.</p>
<p>To use it, open up Terminal and type or paste the following:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/System/Library/CoreServices/pbs</div></div>
</li>
<li><strong>Reboot.</strong><br />
I just finished talking with someone on Twitter who was trying to fix this problem and, after all of the troubleshooting steps we brainstormed, it was a reboot that got him back in business.  Seriously &#8212; do this first.</p>
</li>
<li><strong>Repair Your Permissions.</strong><br />
Yes &#8212; it&#8217;s our next favorite step of troubleshooting anything on a Mac!  If you aren&#8217;t sure how to do it, <a target="_blank" href="http://www.ehow.com/how_4500001_fix-permissions-mac-os-x.html" >here&#8217;s a good guide for beginners</a> using Apple&#8217;s own Disk Utility.  Utilities like <a target="_blank" href="http://www.titanium.free.fr/pgs2/english/onyx_snowleopard.html" >Onyx</a> are also a dead-simple way to do a permission repair on your hard drive!</li>
<li>
<strong>Manually Check Your Service List.  </strong><br />
Check both your ~/Library/Services and /System/Library/Services directories for old services. To quickly troubleshoot which Service is causing the hang up, move them out of the directories one by one and check the Services menu again. You&#8217;ll know that you&#8217;ve found the culprit when &#8220;Building&#8230;&#8221; is replaced by the an actual list of services.  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />
</li>
<li><strong>Reset the LaunchServices database with a Mac Utility.</strong><br />
At least one user reported fixing the issue by rebuilding the LaunchServices database.  Again, utilities like <a target="_blank" href="http://www.titanium.free.fr/pgs2/english/onyx_snowleopard.html" >Onyx</a> allow you to do so pretty easily:<br />
<img src="http://veritrope.com/wp-content/uploads/2009/11/us_onyx-21.png" alt="us_onyx 2" title="us_onyx 2" width="665" height="256" class="aligncenter size-full wp-image-2658" /></li>
<li><strong>Reset the LaunchServices database with a Terminal line command.</strong><br />
If you&#8217;re comfortable with Terminal, you can use the command below to achieve the same thing as a utility like Onyx:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user</div></div>
</li>
</ul>
<h3>Any Other Techniques Work For You?  Share Your Fix In The Comments!</h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/snow-leopard-services-menu-building-and-building-and-building/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Service: Evernote Search</title>
		<link>http://veritrope.com/tips/snow-leopard-service-evernote-search/</link>
		<comments>http://veritrope.com/tips/snow-leopard-service-evernote-search/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 10:10:30 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Automator Services]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X 10.6]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2559</guid>
		<description><![CDATA[Contextual Evernote Search Service for Snow Leopard]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I was trying to explain an idea that I had for a Snow Leopard Service on the Evernote forum&#8230; and decided to make a video clip of a mock up to demonstrate the concept.  Basically, it&#8217;s a way to search for a specific keyword in your notes quickly while doing other things on your computer.  I liked the way that Evernote formatted their &#8220;Quicknote&#8221; bookmarklet, so I used that as my template:</p>
<h3>The Original Concept</h3>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/aLF_MDUkB7Y&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/aLF_MDUkB7Y&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I still think that format would be pretty great (cough, cough&#8230; Evernote team&#8230; cough), but is there something that we could do NOW?</p>
<p>As was often said in the movie <a target="_blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26ref%255F%3Dpd%255Flpo%255Fk2%255Fdp%255Fsr%255Fsq%255Ftop%26keywords%3Dfargo%26index%3Dblended&amp;tag=veritrope-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957" >Fargo</a><img style="border:none !important; margin:0px !important;" src="https://www.assoc-amazon.com/e/ir?t=veritrope-20&amp;l=ur2&amp;o=1" border="0" alt="" width="1" height="1" /> &#8212; <span style="text-decoration: underline;"><strong>Youbetchya!</strong></span> And it&#8217;s available for download below!</p>
<p><span id="more-2559"></span></p>
<h1><strong>Updated On February 25, 2010</strong></h1>
<h3>Features</h3>
<ul>
<li>Once Installed, this service will allow you to Control-Click (a.k.a., &#8220;Right Click&#8221;) a highlighted passage of text anywhere that Snow Leopard&#8217;s Services are available and search through your notes in Evernote!<br />
<h3>
<p><div id="attachment_2570" class="wp-caption aligncenter" style="width: 236px"><img class="size-medium wp-image-2570" title="Evernote Search Context" src="http://media.veritrope.com/wp-content/uploads/2009/10/Evernote-Search-Context-226x300.jpg" alt="Installed Services appear at the bottom of your Contextual Menu" width="226" height="300" /><p class="wp-caption-text">Installed Services appear at the bottom of your Contextual Menu</p></div></h3>
</li>
<li>Instead of opening up a new tab or window in your browser, a special preview window will appear after a moment containing your search results.  When you&#8217;re done, just close the window and you&#8217;re back to where you started &#8212; with no fuss!</li>
<p>(Pretty cool, eh?)</p>
<h3>
<p><div id="attachment_2572" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-2572" title="Evernote Search Results" src="http://media.veritrope.com/wp-content/uploads/2009/10/Evernote-Search-Results-300x215.jpg" alt="Easy to use Preview Window superimposes your results over the current window." width="300" height="215" /><p class="wp-caption-text">Easy to use Preview Window superimposes your results over the current window.</p></div></h3>
</ul>
<h1>The Fine Print</h1>
<p>(Otherwise known as &#8220;Stuff You Should Know Before Installing&#8221;)</p>
<ul>
<li>This Is the &#8220;Beta 2&#8243; Release, which should fix some &#8220;Permissions Errors&#8221; that happened with the installer;</li>
<li>Other errors may arise when you do something that I didn&#8217;t think of or test for! Just use the comment thread below to tell me about it <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>I am providing the Service for the benefit of the Mac community.  While it works wonderfully for me, I cannot take responsibility for any data you might lose (or if your laptop turns into a pumpkin or something&#8230;)</li>
<li>&#8220;Community&#8221; means &#8220;participation&#8221;.  Please share with the rest of us how you think this service could be improved (and feel free to help someone if they don&#8217;t understand something!)</li>
</ul>
<h1>How to Install and Use</h1>
<ol>
<li>Download the ZIP file from the link below:</li>
<p><a href="http://veritrope.com/mint/pepper/tillkruess/downloads/tracker.php?url=http://media.veritrope.com/services/Search_in_Evernote_Service_Beta_2.zip&amp;remote" ><img src="http://media.veritrope.com/wp-content/images/download_button.png" alt="CLICK HERE TO DOWNLOAD" width="300"/></a></p>
<li>When unzipped, click on the installer package called &#8220;Search in Evernote Service&#8221; and follow the instructions.</li>
</ol>
<blockquote><h1>Please Donate to Support These Releases!</h1>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="9303277" />
<input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</blockquote>
<p></p>
<h2>Found a bug?</h2>
<h3><a href="http://veritrope.com/bug-report/" >Click Here To Submit Your Bug Report!</a></h3>
<h2>Interested in what other Services are available for Snow Leopard?</h2>
<h3><a href="http://veritrope.com/snow-leopard-services" >Click here to see the latest list!</a></h3>
<p></p>
<h2>Interested in what AppleScripts are available for Evernote?</h2>
<h3><a href="http://veritrope.com/tips/evernote-applescript-resources" >Click here to see the latest list!</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/snow-leopard-service-evernote-search/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Save Your Safari URLs into Evernote!</title>
		<link>http://veritrope.com/tips/safari-tabs-to-evernote/</link>
		<comments>http://veritrope.com/tips/safari-tabs-to-evernote/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 19:07:45 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2528</guid>
		<description><![CDATA[Save Your Safari Bookmarks into Evernote with this AppleScript that Exports a List of Your Open Tabs!]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-2551" title="PreviewScreenSnapz001" src="http://media.veritrope.com/wp-content/uploads/2009/10/PreviewScreenSnapz001-300x249.jpg" alt="PreviewScreenSnapz001" width="300" height="249" /><br />
Evernote user John recently posted this in the company&#8217;s Mac forum:</p>
<blockquote><p><a target="_blank" href="http://forum.evernote.com/phpbb/viewtopic.php?f=38&amp;t=12634" ><em><strong>&#8220;I was looking for a better way to store bookmarks while I am researching something without storing the entire web page or a pdf of it.  Dragging and dropping the icon from the web page URL into a note leads to a webloc file that has to be double-clicked to open, and does not work on the iPhone client.  Copying and pasting the URL into a note leads to a nice link that can be single click accessed, or accessed directly in the EN client on the iPhone, which is a nice touch.</strong></em></a></p>
<p><a target="_blank" href="http://forum.evernote.com/phpbb/viewtopic.php?f=38&amp;t=12634" ><em><strong>I can&#8217;t see any advantage to the webloc file. Can the default behavior of the drag and drop be changed on the desktop client so that it acts like a paste of the URL? It would make much more sense than the webloc, unless I am missing something.</strong></em></a></p>
<p><a target="_blank" href="http://forum.evernote.com/phpbb/viewtopic.php?f=38&amp;t=12634" ><em><strong> </strong></em></a><a target="_blank" href="http://forum.evernote.com/phpbb/viewtopic.php?f=38&amp;t=12634" ><em><strong>If anyone else has ideas about how they store bookmarks while they are researching so that they can be accessed between the EN desktop and iPhone client I would love to hear it.&#8221;</strong></em></a></p></blockquote>
<p>How about an AppleScript to do the job?<br />
<span id="more-2528"></span></p>
<h3>Features</h3>
<ul>
<li>This AppleScript creates a note with a list of the URLs of each open tab in the frontmost window of Safari.</li>
<li>Efficiency was foremost in my mind when creating this script.  As such, the script creates the note in the default notebook and without any tagging.  If anyone thinks that notebook selection and tagging should be included, please let me know in the comments below and I&#8217;ll consider adding it in!</li>
</ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ul>
<li>Errors that will undoubtedly arise when you do something that I didn&#8217;t think of or test for!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<h3>How to Install and Use</h3>
<p>Just run the script!</p>
<h3>Change Log:</h3>
<ul>
<li>1.00     (October 28, 2009)     INITIAL RELEASE OF SCRIPT</li>
</ul>
<p>My fellow AppleScript ninjas &#8212; Dive in to the code and, if you have any suggestions or problems, please let me know about them in the comment thread below.</p>
<p>And remember:</p>
<ol>
<li>I am providing these scripts for the benefit of the Mac community.  While they work wonderfully for me, I cannot take responsibility for any data you might lose (or if your laptop turns into a pumpkin or something&#8230;);</li>
<li>&#8220;Community&#8221; means &#8220;participation&#8221;.  Please share with the rest of us *how* you use these scripts in your workflow, how you think they could be improved (and feel free to help someone if they don&#8217;t understand something!)</li>
</ol>
<div class="codecolorer-container applescript twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="applescript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #808080; font-style: italic;">(*<br />
http://veritrope.com<br />
Safari URLs List to Evernote Exporter<br />
Version 1.0<br />
October 28, 2009<br />
Project Status, Latest Updates, and Comments Collected at:<br />
http://veritrope.com/tips/safari-tabs-to-evernote<br />
<br />
Installation: Just double-click on the script!<br />
<br />
FastScripts Installation (Optional, but recommended):<br />
--Download and Install FastScripts from http://www.red-sweater.com/fastscripts/index.html<br />
--Copy script or an Alias to ~/Library/Scripts/Applications/Yojimbo<br />
--Set up your keyboard shortcut<br />
<br />
CHANGELOG:<br />
<br />
1.00&nbsp; &nbsp; INITIAL RELEASE<br />
*)</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> url_list <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #ff0033;">the</span> date_stamp <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span><span style="color: #ff0033;">the</span> current date<span style="color: #000000;">&#41;</span> <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">string</span><span style="color: #000000;">&#41;</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> NoteTitle <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;URL List from Safari Tabs on &quot;</span> <span style="color: #000000;">&amp;</span>amp; <span style="color: #ff0033;">the</span> date_stamp<br />
<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Safari&quot;</span><br />
<span style="color: #0066ff;">activate</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> safariWindow <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">window</span> <span style="color: #000000;">1</span><br />
<span style="color: #ff0033; font-weight: bold;">repeat</span> <span style="color: #ff0033; font-weight: bold;">with</span> w <span style="color: #ff0033; font-weight: bold;">in</span> safariWindow<br />
<span style="color: #ff0033; font-weight: bold;">try</span><br />
<span style="color: #ff0033; font-weight: bold;">repeat</span> <span style="color: #ff0033; font-weight: bold;">with</span> t <span style="color: #ff0033; font-weight: bold;">in</span> <span style="color: #000000;">&#40;</span>tabs <span style="color: #ff0033; font-weight: bold;">of</span> w<span style="color: #000000;">&#41;</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> TabTitle <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span><span style="color: #0066ff;">name</span> <span style="color: #ff0033; font-weight: bold;">of</span> t<span style="color: #000000;">&#41;</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> TabURL <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span>URL <span style="color: #ff0033; font-weight: bold;">of</span> t<span style="color: #000000;">&#41;</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> TabInfo <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span><span style="color: #009900;">&quot;&quot;</span> <span style="color: #000000;">&amp;</span>amp; TabTitle <span style="color: #000000;">&amp;</span>amp; <span style="color: #ff0033; font-weight: bold;">return</span> <span style="color: #000000;">&amp;</span>amp; TabURL <span style="color: #000000;">&amp;</span>amp; <span style="color: #ff0033; font-weight: bold;">return</span> <span style="color: #000000;">&amp;</span>amp; <span style="color: #ff0033; font-weight: bold;">return</span><span style="color: #000000;">&#41;</span><br />
<span style="color: #ff0033; font-weight: bold;">copy</span> TabInfo <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033;">the</span> <span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">of</span> url_list<br />
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">repeat</span><br />
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">try</span><br />
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">repeat</span><br />
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span><br />
<br />
<span style="color: #808080; font-style: italic;">-- convert url_list to text</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> old_delim <span style="color: #ff0033; font-weight: bold;">to</span> AppleScript<span style="">'</span>s <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #0066ff;">delimiters</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> AppleScript<span style="">'</span>s <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #0066ff;">delimiters</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033; font-weight: bold;">return</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> url_list <span style="color: #ff0033; font-weight: bold;">to</span> url_list <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> AppleScript<span style="">'</span>s <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #0066ff;">delimiters</span> <span style="color: #ff0033; font-weight: bold;">to</span> old_delim<br />
<br />
<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Evernote&quot;</span><br />
<span style="color: #ff0033; font-weight: bold;">set</span> EVNote <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span>create note <span style="color: #ff0033; font-weight: bold;">with</span> <span style="color: #0066ff;">text</span> url_list title NoteTitle<span style="color: #000000;">&#41;</span><br />
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span></div></div>
<p><a href="http://veritrope.com/mint/pepper/tillkruess/downloads/tracker.php?url=http://media.veritrope.com/scripts/Safari_URLs_to_Evernote.zip&amp;remote" ><img src="http://media.veritrope.com/wp-content/images/download_button.png" alt="CLICK HERE TO DOWNLOAD" width="300"/></a></p>
<h1>Was this script helpful to you?  Please Donate!</h1>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="9259087" />
<input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
<p></p>
<h2>Found a bug in the script?</h2>
<h3><a href="http://veritrope.com/bug-report/" >Click Here To Submit Your Bug Report!</a></h3>
<h2>Interested in what other scripts are available for Evernote?</h2>
<h3><a href="http://veritrope.com/tips/evernote-applescript-resources" >Click here to see the latest list!</a></h3>
<p></p>
<h2>Interested in Snow Leopard Services?</h2>
<h3><a href="http://veritrope.com/snow-leopard-services" >Click here to see the latest list!</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/safari-tabs-to-evernote/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Amazon.com Search Service for Snow Leopard</title>
		<link>http://veritrope.com/tips/services/amazon-com-search-service-for-snow-leopard/</link>
		<comments>http://veritrope.com/tips/services/amazon-com-search-service-for-snow-leopard/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 14:00:03 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[Automator Services]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X 10.6]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2463</guid>
		<description><![CDATA[Search highlighted text on Amazon.com with the click of your mouse!]]></description>
			<content:encoded><![CDATA[<h1>NEW UPDATE &#8212; February 25, 2010</h1>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/A-nUfGIOMAQ&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/A-nUfGIOMAQ&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Have you ever been reading about a book, movie, or an album and wanted to find it quickly on Amazon.com?  Now it&#8217;s as easy as clicking your mouse with <a target="_blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26redirect%3Dtrue%26keywords%3DSnow%2520Leopard%26tag%3Dveritrope-20%26index%3Dblended%26linkCode%3Dur2%26camp%3D1789%26creative%3D9325&#038;tag=veritrope-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957" >Snow Leopard</a><img src="https://www.assoc-amazon.com/e/ir?t=veritrope-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />!</p>
<p><span id="more-2463"></span></p>
<p>I think that the new Automator Services are among Snow Leopard&#8217;s best new features because, with a little elbow grease, users can extend the operating system in some pretty fun ways.  For example, I&#8217;m always reading about things online that I want to remember to look up or add to my shopping cart on Amazon.</p>
<p>With this service installed, all I have to do is highlight the text that I want to search for and then activate it!  I thought I&#8217;d share this <strong>PREVIEW release</strong> to see if it works for you as well!</p>
<h1>Features</h1>
<ul>
<li>Once Installed, this service will allow you to Control-Click (a.k.a., &#8220;Right Click&#8221;) a highlighted passage of text anywhere that Snow Leopard&#8217;s Services are available and search for it immediately on Amazon.com!<br />
<h3>
<p><div id="attachment_2456" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-2456  " style="border: 1px solid black;" title="Contextual Menu" src="http://media.veritrope.com/wp-content/uploads/2009/10/SafariScreenSnapz001-300x142.jpg" alt="Contextual Menu" width="300" height="142" /><p class="wp-caption-text">Installed Services appear at the bottom of your Contextual Menu</p></div></h3>
</li>
<li>Instead of opening up a new tab or window in your browser, a special preview window will appear containing your search results.  When you&#8217;re done shopping, just close the window and you&#8217;re back to where you started &#8212; with no fuss!</li>
<h3>
<p><div id="attachment_2457" class="wp-caption aligncenter" style="width: 279px"><img class="size-medium wp-image-2457 " title="Preview Window" src="http://media.veritrope.com/wp-content/uploads/2009/10/Preview-Window-269x300.png" alt="Preview Window" width="269" height="300" /><p class="wp-caption-text">Easy to use Preview Window superimposes your results over the current window.</p></div></h3>
</ul>
<h1>The Fine Print</h1>
<p>(Otherwise known as &#8220;Stuff You Should Know Before Installing&#8221;)</p>
<ul>
<li>THIS IS A BETA RELEASE!  Errors will undoubtedly arise when you do something that I didn&#8217;t think of or test for!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>**UPDATE** This New &#8220;Beta 3&#8243; Revision continues to try and fix installer-related issues that occurred on some systems.  If you installed an earlier version and the service didn&#8217;t work, this revision should fix the issue for you!</li>
<li>This Service will only work in applications that support it.  For example, Safari allows the use of services and Firefox (currently) doesn&#8217;t.</li>
<li>Veritrope.com&#8217;s Amazon Affiliate ID is included in the search, which means that I may receive a commission on items you find through the Search Service.</li>
<li>This service is being provided for the benefit of the Mac community.  While it works wonderfully for me, I cannot take responsibility for any data you might lose (or if your laptop turns into a pumpkin or something&#8230;)</li>
<li>&#8220;Community&#8221; means &#8220;participation&#8221;.  Please share with the rest of us how you think this service could be improved (and feel free to help someone if they don&#8217;t understand something!)</li>
</ul>
<h1>How to Install</h1>
<ol>
<li>Download the ZIP file from the link below:</li>
<p><a href="http://veritrope.com/mint/pepper/tillkruess/downloads/tracker.php?url=http://media.veritrope.com/services/Amazon_Search_Service_Beta_3.zip&#038;remote" ><img src="http://media.veritrope.com/wp-content/images/download_button.png" alt="CLICK HERE TO DOWNLOAD" width="300"/></a><br />
</p>
<li>Once downloaded and unzipped, click on the installer package called &#8220;Amazon.com Search Service for Snow Leopard&#8221; and follow the instructions.
<p><img class="aligncenter size-medium wp-image-2483" title="PKG" src="http://media.veritrope.com/wp-content/uploads/2009/10/PKG-300x105.png" alt="PKG" width="300" height="105" /></li>
</ol>
<h1>How to Use</h1>
<ol>
<li>Open Safari (or any other Services-Aware Application);</li>
<li>Highlight the text you want to search for on Amazon.com</li>
<li>Move your cursor over the highlighted text and Control-Click (Right-Click) with your mouse</li>
<li>When the Contextual Menu appears, look toward the bottom of the list for the available Services</li>
<li>Select &#8220;Amazon.com Search&#8221;.  The Preview Window will appear in just a few moments and display your search results!</li>
</ol>
<p>I hope you enjoy using it!  Please leave any suggestions, comments, or &#8220;bug reports&#8221; in the comments below.<br />
</p>
<h2>Interested in what other Services are available for Snow Leopard?</h2>
<h3><a href="http://veritrope.com/snow-leopard-services" >Click here to see the latest list!</a></h3>
<a href="http://veritrope.com/tips/services/amazon-com-search-service-for-snow-leopard/"  class='retweet ' startCount = '0'>Amazon.com Search Service for Snow Leopard</a>]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/services/amazon-com-search-service-for-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Export from Yojimbo to Evernote with AppleScript</title>
		<link>http://veritrope.com/tips/yojimbo-evernote-export/</link>
		<comments>http://veritrope.com/tips/yojimbo-evernote-export/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 06:57:36 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Yojimbo]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2290</guid>
		<description><![CDATA[An AppleScript that exports a copy of all the selected entries in Yojimbo and saves them into an Evernote notebook!]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.veritrope.com/wp-content/uploads/2009/10/NewYojimbo-300x300.png" alt="NewYojimbo" title="NewYojimbo" width="300" height="300" class="alignnone size-medium wp-image-2301" /></p>
<p>Want to quickly export your Yojimbo entries into Evernote? Read on!<br /><span id="more-2290"></span></p>
<p>After releasing the <a href="http://veritrope.com/tips/evernote-yojimbo-export" >Evernote to Yojimbo AppleScript</a> earlier this month, some readers asked if there was a script to do the reverse &#8212; Yojimbo to Evernote exporting.</p>
<p><a target="_blank" href="http://brettkelly.org/" >Brett Kelly</a> had already written a great script that would do a complete transfer of all of your Yojimbo items into Evernote.  I asked him if he would mind if I used it as a launching pad for a fuller script &#8212; and he graciously told me to go for it!</p>
<h3>Features</h3>
<ul>
<li>This AppleScript exports a copy of all the selected entries in your Yojimbo database (except those in the Trash) and then imports them into an Evernote notebook.</li>
<li>When the script needs to export a file first, it places it into a temporary folder on your Desktop and then deletes it when completed.</li>
<li>In addition to facilitating a full export of all your items into Evernote, this script also gives you the option to export items by Collection (i.e., Images, Bookmarks, PDFs).<br /><img src="http://Veritrope.com/wp-content/uploads/2009/10/Script-Debugger-4.5-21.png" alt="Main Archive Window" title="Main Archive Window" width="281" height="261" class="alignnone size-full wp-image-2302" /></li>
<li>Any tags inside Yojimbo will be added to your imported notes in Evernote.  You&#8217;ll also have a chance to add additional tags to the note on the way in, and you can now select which notebook will receive the import (or create a new one!).<br /><img src="http://media.veritrope.com/wp-content/uploads/2009/10/Script-Debugger-4.5-300x123.png" alt="Tag Window" title="Tag Window" width="300" height="123" class="alignnone size-medium wp-image-2309" /><br />
<img src="http://media.veritrope.com/wp-content/uploads/2009/10/multiple-tags-300x78.png" alt="multiple tags" title="multiple tags" width="300" height="78" class="alignnone size-medium wp-image-2308" />
</li>
<li>When the &#8220;Source URL&#8221; slot wasn&#8217;t already being used for a web link, I added clickable URI links that open up your original Yojimbo note.<br />
<img src="http://media.veritrope.com/wp-content/uploads/2009/10/URI-300x73.png" alt="URI" title="URI" width="300" height="73" class="alignnone size-medium wp-image-2307" /></li>
<li>Automatic <a target="_blank" href="http://growl.info/" >Growl</a> detection has also been enabled which will save you a trip to the Script Editor to enable/disable it.  As the export completes its transfer of a Collection, Growl users will see a notification window with that collection&#8217;s icon and the number of items that were transferred.  If you&#8217;re transferring everything all at once, you&#8217;ll get notifications for each collection so you can track the progress of your export.  When the script is complete, it&#8217;ll give you the final tally via Growl as well.<br /><img src="http://media.veritrope.com/wp-content/uploads/2009/10/Growl-Collection-300x94.png" alt="Growl Collection" title="Growl Collection" width="300" height="94" class="alignnone size-medium wp-image-2304" /><img src="http://media.veritrope.com/wp-content/uploads/2009/10/Growl-total-300x100.png" alt="Growl total" title="Growl total" width="300" height="100" class="alignnone size-medium wp-image-2305" /></li>
</ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ul>
<li>Errors that will undoubtedly arise when you do something that I didn&#8217;t think of or test for!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<h3>How to Install and Use</h3>
<p>Just run the script and follow the menus to select the notes to send to Yojimbo!<br />
If you&#8217;re importing a lot of items, I&#8217;d recommend that you change a few settings inside Evernote before beginning the import.  In the &#8220;Clipping&#8221; tab of the Preferences menu, uncheck the boxes in the section called &#8220;After a clip:&#8221;<br />
<img src="http://media.veritrope.com/wp-content/uploads/2009/10/disable-windows-300x205.png" alt="disable windows" title="disable windows" width="300" height="205" class="alignnone size-medium wp-image-2310" /><br />If the boxes are checked while importing a large number of items, Evernote will fill your screen with open windows and sound like it is repeatedly shooting you with a laser from a 70&#8217;s Sci-Fi movie.  Trust me &#8212; uncheck the boxes first and you&#8217;ll be much happier!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Source Code and Download Link on the next page!</h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/yojimbo-evernote-export/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Evernote to MacJournal AppleScript</title>
		<link>http://veritrope.com/tips/evernote-macjournal-export/</link>
		<comments>http://veritrope.com/tips/evernote-macjournal-export/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 06:08:17 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[MacJournal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2216</guid>
		<description><![CDATA[Export from Evernote to MacJournal with this AppleScript!]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.veritrope.com/wp-content/uploads/2009/10/MacJournal-300x300.png" alt="MacJournal" title="MacJournal" width="300" height="300" class="alignnone size-medium wp-image-2110" /><br />Veritrope reader Lem liked the MacJournal to Evernote script I posted the other day and commented:</p>
<blockquote><p>&#8220;What would be nice, also, is a script to do the contrary: Export a notebook from Evernote to MacJournal, if possible with tags, annotations…&#8221;</p></blockquote>
<p>It was followed by three exclamation points (!!!) so, unless he&#8217;s a fan of <a target="_blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fentity%2F%21%21%21%2FB000AR9MUM%3Fie%3DUTF8%26ref%255F%3Dntt%255Fmus%255Fgen%255Fpel&#038;tag=veritrope-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957" >the band of the same name</a><img src="https://www.assoc-amazon.com/e/ir?t=veritrope-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, the guy would <em>really</em> like a script.</p>
<p>Okay Lem &#8212; here you go. (!!!)<br />
<span id="more-2216"></span></p>
<h3>Features <strong>**UPDATED**</strong></h3>
<ul>
<li><strong>**NEW**</strong> There are now <em>two</em> scripts included in the downloadable ZIP archive: One that attempts to preserve the formatting of the Evernote item by importing it into MacJournal as a <strong>Read-Only Web Archive</strong> formatted file, and another that will create an <strong>Editable RTF file</strong> that may not retain as much of the original formatting and/or embedded images.  (See &#8220;Current Limitations&#8221; Below For More&#8230;)</li>
<li>Each script exports a copy of all the selected entries in an Evernote notebook and saves them into MacJournal.</li>
<li>Automatic <a target="_blank" href="http://growl.info/" >Growl</a> detection has also been enabled which will save you a trip to the Script Editor to enable/disable it.</li>
</ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ul>
<li><strong>Editing Your Notes:</strong> I wrote the original script to convert the HTML files that Evernote exports into a slightly different format called a “Web Archive” which bundles in all of the embedded images and information so that the note will look the same inside of MacJournal.  The only problem is that MacJournal doesn’t <em>edit</em> that format (yet).  Dan Schimpf (the developer behind MacJournal) and I have been trading some emails about it and he is looking into some options to enable Web Archive editing within MacJournal.  Until then (or until I can figure out a better way of doing it), you&#8217;ll have to use two different scripts depending upon if you want to edit the contents of the note inside of MacJournal right away.  </li>
<li>Errors that will undoubtedly arise when you do something that I didn&#8217;t think of or test for!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<h3>How to Install and Use</h3>
<p>Just run the appropriate script and select the notes that you want to send to MacJournal!</p>
<h3><a href="http://veritrope.com/tips/evernote-macjournal-export/2" >Source code and download link on the next page!</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/evernote-macjournal-export/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Export from Evernote to Yojimbo with AppleScript</title>
		<link>http://veritrope.com/tips/evernote-yojimbo-export/</link>
		<comments>http://veritrope.com/tips/evernote-yojimbo-export/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 01:36:54 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Yojimbo]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2133</guid>
		<description><![CDATA[This script exports a copy of all the selected entries in an Evernote notebook and saves them into Yojimbo.]]></description>
			<content:encoded><![CDATA[<p><img src="http://Veritrope.com/wp-content/uploads/2009/10/Yojimbo1.png" alt="Yojimbo" title="Yojimbo" width="128" height="128" class="alignnone size-full wp-image-2140" /><br />
<br />Want to quickly export your Evernote entries into Yojimbo? Read on!<span id="more-2133"></span></p>
<h3>Features</h3>
<ul>
<li>This script exports a copy of all the selected entries in an Evernote notebook and saves them into Yojimbo.</li>
<li>Automatic <a target="_blank" href="http://growl.info/" >Growl</a> detection has also been enabled which will save you a trip to the Script Editor to enable/disable it.</li>
</ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ul>
<li>Currently, links to audio clips from Evernote will <i>appear</i> to import into Yojimbo.  However, the links are non-functional.  I&#8217;ll look at what can be done about this in future revisions (and based on popular consensus);</li>
<li>Errors that will undoubtedly arise when you do something that I didn&#8217;t think of or test for!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<h3>How to Install and Use</h3>
<p>Just run the script and follow the menus to select the notes to send to Yojimbo!</p>
<h3><a href="http://veritrope.com/tips/evernote-yojimbo-export/2" >Source Code and Download Link on the next page!</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/evernote-yojimbo-export/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>MacJournal to Evernote &#8212; Batch Export AppleScript</title>
		<link>http://veritrope.com/tips/macjournal-to-evernote-batch-export-applescript/</link>
		<comments>http://veritrope.com/tips/macjournal-to-evernote-batch-export-applescript/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 17:34:12 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[MacJournal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=2095</guid>
		<description><![CDATA[Export all of the journal entries in a selected MacJournal into Evernote!]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.veritrope.com/wp-content/uploads/2009/10/MacJournal-300x300.png" alt="MacJournal" title="MacJournal" width="300" height="300" class="alignnone size-medium wp-image-2110" /><br />Want to quickly export your MacJournal entries into Evernote?  Read on!<span id="more-2095"></span></p>
<h3>Features</h3>
<ul>
<li>This script exports a copy of all the entries in a selected MacJournal and saves them into Evernote.</li>
<li>Automatic <a target="_blank" href="http://growl.info/" >Growl</a> detection has also been enabled which will save you a trip to the Script Editor to enable/disable it.</li>
</ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ul>
<li>
If you&#8217;re importing a lot of items, I&#8217;d recommend that you change a few settings inside Evernote before beginning the import.  In the &#8220;Clipping&#8221; tab of the Preferences menu, uncheck the boxes in the section called &#8220;After a clip:&#8221;<br />
<img src="http://media.veritrope.com/wp-content/uploads/2009/10/disable-windows-300x205.png" alt="disable windows" title="disable windows" width="300" height="205" class="alignnone size-medium wp-image-2310" /><br />If the boxes are checked while importing a large number of items, Evernote will fill your screen with open windows and sound like it is repeatedly shooting you with a laser from a 70&#8217;s Sci-Fi movie.  Trust me &#8212; uncheck the boxes first and you&#8217;ll be much happier!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />
</li>
<li>Although MacJournal uses tagging, it isn&#8217;t currently possible to read those tags via AppleScript.  Therefore, you&#8217;ll need to tag your items once they&#8217;ve been imported into Evernote.</li>
<li>Errors that will undoubtedly arise when you do something that I didn&#8217;t think of or test for!  <img src='http://veritrope.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<h3>How to Install and Use</h3>
<p>Just run the script and select the Journal that you want to send to Evernote!</p>
<h3>Source code and download link on the next page!</h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/macjournal-to-evernote-batch-export-applescript/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: veritrope.com @ 2010-08-01 04:47:42 -->