<?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; Export</title>
	<atom:link href="http://veritrope.com/tag/export/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>Export Apple Mail Messages and Notes to Text Files</title>
		<link>http://veritrope.com/tips/export-apple-mail-messages-and-notes-to-text-files/</link>
		<comments>http://veritrope.com/tips/export-apple-mail-messages-and-notes-to-text-files/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 21:41:07 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apple Mail]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Text Files]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=3202</guid>
		<description><![CDATA[An AppleScript to Export Selected Apple Mail Messages and Notes to Individual Text Files.]]></description>
			<content:encoded><![CDATA[<p>I saw a Tweet from <a target="_blank" href="http://ukmac.net/" >Scott Paterson</a>, asking if there was an AppleScript to quickly batch export Notes from Apple Mail into individual text file.</p>
<p> Well Scott &#8212; If there wasn&#8217;t one before, there is now!</p>
<p><span id="more-3202"></span></p>
<h3>Features</h3>
<ul>
<li>This AppleScript will export any selected Messages or Notes in Apple Mail as individual text files to a temporary folder on your Desktop (called &#8220;Temp Export Folder&#8221;);</li>
<li>The script also attempts to remove any &#8220;illegal characters&#8221; from the file name as to avoid the process grinding to a complete halt!</li>
<li>If you have <a target="_blank" href="http://growl.info" >Growl</a> installed, the script should detect it and notify you when your export is completed.</li>
</ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ul>
<li>I kept the output very basic &#8212; only spitting out the content of the note/message as the content of the text file.  It *IS* possible to add more information from the messages and, if people are interested in that, let me know!</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>First, select the messages or notes in Apple Mail.</p>
<p>Then just run the script&#8230; either:</p>
<ol>
<li>Manually;</li>
<li>By using Snow Leopard&#8217;s &#8220;Keyboard Shortcuts&#8221;, or;</li>
<li>By using <a target="_blank" href="http://www.red-sweater.com/fastscripts/" >FastScripts</a></li>
</ol>
<h3>Source Code and Download Link on the next page!</h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/export-apple-mail-messages-and-notes-to-text-files/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Reader Question: Export from Notespark?</title>
		<link>http://veritrope.com/tips/reader-question-export-from-notespark/</link>
		<comments>http://veritrope.com/tips/reader-question-export-from-notespark/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 20:19:37 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[Notespark]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=3170</guid>
		<description><![CDATA[Strategies to Export Notes from Notespark to Evernote]]></description>
			<content:encoded><![CDATA[<p>Veritrope.com reader Alan emails this afternoon with a question:</p>
<blockquote><p>&#8220;I am currently using <a target="_blank" href="http://notespark.com/learn_more" >Notespark</a> and I would like to use <a target="_blank" href="http://evernote.com" >Evernote</a>.  Notespark exports its files to .csv format while Evernote expects to import using an .enex file.  Can you steer me in the right direction to help me to export from Notespark and import to Evernote?&#8221;</p></blockquote>
<p>Well, Alan &#8212; As you&#8217;ve already figured out, the Notespark system doesn&#8217;t exactly make this easy&#8230;.. but here are a few ideas:<br />
<span id="more-3170"></span></p>
<h3>PDF into Evernote</h3>
<p>If you don&#8217;t really care about editing your notes, why not just open up the CSV file in Excel/Numbers/etc. and then save the file directly into Evernote as a PDF?</p>
<p>To do this, print the document by pressing the Command (⌘) key and the &#8220;P&#8221; key at the same time.  A &#8220;Print Dialog Box&#8221; will open up and, in the lower left corner of it, you&#8217;ll see a button that says &#8220;PDF&#8221;.  Press it and you&#8217;ll see a list of applications you can send the document directly to as a PDF:<br />
<div id="attachment_3174" class="wp-caption aligncenter" style="width: 231px"><a target="_blank" href="http://69.164.214.58/wordpress/wp-content/uploads/2009/12/SafariScreenSnapz0021.jpg" ><img src="http://media.veritrope.com/wp-content/uploads/2009/12/SafariScreenSnapz002-221x300.jpg" alt="" title="Save as PDF to Evernote" width="221" height="300" class="size-medium wp-image-3174" /></a><p class="wp-caption-text">Save PDF to Evernote...and it's in there!</p></div></p>
<h3>Email your notes into Evernote</h3>
<p>If you need to <em>edit</em> the notes after adding to Evernote, you might consider using Evernote&#8217;s handy &#8220;E-mailing notes into your account&#8221; feature!</p>
<p>You can email text, images, and audio into Evernote using a special e-mail address created by your Evernote account.  To find the address using the Evernote web client, sign into Evernote Web and click the Settings link at the top of the page to see your address.  Any e-mail with compatible attachments sent to this address will become a new note in your default notebook.</p>
<p><img src="http://www.evernote.com/about/media/img/support/en3web_settings.gif" alt="Evernote Email Address" /></p>
<p>Sparknote is what I would personally characterize as a more &#8220;closed information ecosystem&#8221; &#8212; when you &#8220;share&#8221; your note with someone, it sends a link to a server-hosted copy of the note.  Notespark <i>does</i>, however,  append the text of the current contents of a note to the end of that &#8220;Share Note&#8221; invitation.</p>
<p>Send that invitation to your special Evernote email address and, voila, the note body is now inside Evernote!  You&#8217;ll lose the metadata like the creation date and the tags for the note this way but, if this doesn&#8217;t matter to you, then it should work fine.</p>
<h3>Use AppleScript</h3>
<p>But what if you really need to keep that metadata?  Or what if you have a ton of notes that you need to bring over?</p>
<p>As Alan mentioned in his email, Notespark allows you to export all your notes as a CSV file.  Not very useful for importing to another note-keeping program&#8230;.</p>
<p>However, if you aren&#8217;t averse to a little D.I.Y. tinkering, you can write an AppleScript that can do almost anything on your Mac!   A customized AppleScript could read a CSV file and create new, individual notes in Evernote while preserving the metadata.</p>
<p>(&#8230;and if programming isn&#8217;t your thing, you could <a href="http://veritrope.com/about/custom-scripts-and-workflows" >commission one</a> to do the job!)</p>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/reader-question-export-from-notespark/feed/</wfw:commentRss>
		<slash:comments>0</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>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>
		<item>
		<title>Evernote Export to HTML AppleScript</title>
		<link>http://veritrope.com/tips/evernote-html-export/</link>
		<comments>http://veritrope.com/tips/evernote-html-export/#comments</comments>
		<pubDate>Tue, 19 May 2009 22:09:20 +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[HTML]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://veritrope.com/?p=1510</guid>
		<description><![CDATA[AppleScript that looks into the current application directory for Evernote, copies the HTML file and constituent elements, puts it in a folder named after the note, and then bundles everything up into a single Web archive file.]]></description>
			<content:encoded><![CDATA[<p><del datetime="2009-08-10T01:50:22+00:00">Judging from <a target="_blank" href="http://forum.evernote.com/phpbb/viewtopic.php?f=38&#038;t=9910" >some</a> of <a target="_blank" href="http://forum.evernote.com/phpbb/viewtopic.php?f=38&#038;t=9283&#038;p=38802&#038;hilit=openness#p38802" >the comments</a> that I&#8217;ve been reading on the Evernote forum, HTML export can&#8217;t get here soon enough!  And even though I&#8217;m pretty sure it&#8217;ll be officially released soon, there has to be a way that we can get the job done now, right?<br />
</del><br />
<strong>Well everyone &#8212; Native HTML Export is now here!  I&#8217;m leaving this page up in case:</p>
<ol>
<li>The code is helpful to someone, or</li>
<li>People are interested in me adapting this into a &#8220;Bulk Webarchiver&#8221; (e.g., taking a bunch of Evernote items and saving them into self-contained &#8220;.webarchive&#8221; files</li>
</ol>
<p>If you&#8217;re interested in that, leave a comment on this page!  Otherwise, Evernote&#8217;s built-in exporter will probably do the trick for you&#8230;.</p>
<p>And now&#8230;.the original project below!</strong></p>
<p><span id="more-1510"></span></p>
<h3>The Big Picture (With Details)</h3>
<p>I&#8217;ve designed a script that looks into the current application directory for Evernote, copies the HTML file and constituent elements, puts it in a folder named after the note, and then bundles everything up into a single Web archive file.</p>
<p>(Pretty cool, huh?)</p>
<p><strong><span style="text-decoration: underline;">This isn&#8217;t designed to replace the forthcoming &#8220;Export to HTML&#8221; feature</span></strong>; I wrote it in order to facilitate some of the other scripts that I&#8217;ve been working on for my clients (keep your eyes peeled for those!). </p>
<p>However, I realized that it would provide a stop-gap solution until the export HTML feature is activated and so I am releasing it to the community in case someone finds it helpful!  When Evernote adds HTML Export into the program, use it!</p>
<p>That said &#8212; this script works really well for me!  &#8220;Web Archiving&#8221; (a.k.a., everything into one file) was the feature that I was most excited about and so, following some sort of <em>Murphy&#8217;s Law of AppleScript Coding</em>, it also ended up being the thing that took me the longest to get working properly. </p>
<p>This script differs from my previous releases in that it also bundles a file known as &#8220;webarchiver&#8221; into the script file itself.  Without it, the script doesn&#8217;t work &#8212; something to keep in mind if you are trying to cut and paste the source code into the script editor.</p>
<h3>What is &#8220;webarchiver&#8221;?</h3>
<p><a target="_blank" href="http://www.entropytheblog.com/blog/2008/11/webarchiver-create-safari-webarchives-from-the-command-line/" >Webarchiver</a> is a program that allows you to use Safari&#8217;s  &#8220;Save As Web Archive&#8221; command <em><span style="text-decoration: underline;">from the command line in Terminal</span></em> (or, in our case, from a &#8220;do shell script&#8221; command inside of AppleScript).  Paul William from <a target="_blank" href="http://www.entropytheblog.com/blog/" >Entropy, The Blog</a>, webarchiver&#8217;s creator, was incredibly gracious in assisting me with the implementation of it into the AppleScript.  With his help, everything finally worked!  Moreover, webarchiver itself is a wonderful, useful program and, without it, this project would not have turned out as well as it did.  Thanks Paul!</p>
<h3>Features</h3>
<ul>
<li>This script copies the selected Evernote items and saves them in <span style="text-decoration: underline;"><strong>2 HTML formats</strong></span>: It consolidates all of the elements into a &#8220;Web Archive&#8221; so that everything is contained in one file, and it also creates a Folder named after the note containing all of the &#8220;non-Evernote&#8221; elements (e.g., everything except the recognizer and ENML files).  For the purposes of this script, I figured it would be better to let people have the choice of *how* they wanted their data &#8212; thus the Folder/Web Archive output;</li>
<p></p>
<li>The script lets you select where you&#8217;d like to export your files.  I  had to use shell scripting to clean up some file name weirdness that was causing the script to fail.  As a result, you&#8217;ll see that typographical characters are sometimes removed from the original file name.  Don&#8217;t let it freak you out.</li>
<p></p>
<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>
<p><img class="alignnone size-full wp-image-1522" title="finderscreensnapz001" src="http://Veritrope.com/wp-content/uploads/2009/05/finderscreensnapz0011.jpg" alt="finderscreensnapz001" width="324" height="77" /></ul>
<h3>Current Limitations and Open Issues</h3>
<p>(Otherwise known as &#8220;Places Where You Could Help Out!&#8221;)</p>
<ol>
<li>The file names are sometimes altered in the exported version if they include typographical characters that would halt the file creation process;</li>
<li>The script is looking to the current folder structure for the files to copy.  When Evernote updates the database structure, the script will probably stop working until I update it.  Then again, my guess is that they&#8217;ll have a working &#8220;Export HTML&#8221; feature when that happens&#8230;which will probably eliminate the need for this script in the first place!</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>
</ol>
<h3>How to Install and Use</h3>
<p>Just run the script, highlight the notes you want to export from Evernote, and tell the script where you&#8217;d like the files saved!</p>
<ol>
<li>You can highlight multiple notes;</li>
<li>You can save this script to /Library/Scripts/ and launch it using the system-wide script menu from the Mac OS X menu bar (The script menu can be activated using the AppleScript Utility application).  Keyboard shortcuts can also be assigned to AppleScripts in the script menu using the System Preferences &#8220;Keyboard &amp; Mouse Settings&#8221;.</li>
</ol>
<h3>FastScript link and support</h3>
<p>Do yourself a favor and <a target="_blank" href="http://www.red-sweater.com/fastscripts/index.html" >download and install FastScripts</a> from Red Sweater.  Triggering the script from the keyboard really makes things almost second-nature: you&#8217;ll watch items <em>practically fly</em> into and out of Evernote with a few keystrokes!</p>
<p>Here&#8217;s how you set it up:</p>
<ul>
<li> Copy script or an Alias to ~/Library/Scripts/Applications/Evernote</li>
<li> Set up your keyboard shortcut in the FastScripts Preference menu</li>
</ul>
<p>For my FastScripts workflow, I am using ⌘ H (as in HTML).</p>
<h3>Source code and download link on the next page!</h3>
]]></content:encoded>
			<wfw:commentRss>http://veritrope.com/tips/evernote-html-export/feed/</wfw:commentRss>
		<slash:comments>0</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:49:08 -->