Importing Apple Notes into EverNote

I had forgotten how awesome AppleScript can be until I Googled how to make this happen.

jeremyrnelson

I ran across a brilliant post of an AppleScript script that will import your Apple Notes into EverNote – here’s the original post:

http://discussion.evernote.com/topic/4046-importing-from-apple-mailapps-notes/

And here’s the script – just cut and paste this into the Apple Script Editor application:

 

tellapplication “Notes”

set theMessages toeverynote

repeatwith thisMessage in theMessages

set myTitle tothe name of thisMessage

set myText tothe body of thisMessage

set myCreateDate tothe creation date of thisMessage

set myModDate tothe modification date of thisMessage

tellapplication “Evernote”

set myNote tocreate note with text myTitle title myTitle notebook “Imported Notes” tags [“imported_from_notes”, “Mavericks”, “Another_Example_Tag”]

setthe HTML content of myNote to myText

setthe creation date of myNote to myCreateDate

setthe modification date of myNote to myCreateDate

endtell

endrepeat

endtell

 

View original post

One thought on “Importing Apple Notes into EverNote

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s