Skip to content

Instantly share code, notes, and snippets.

@pdxmph
Created December 16, 2012 22:39
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save pdxmph/4313789 to your computer and use it in GitHub Desktop.
Save pdxmph/4313789 to your computer and use it in GitHub Desktop.
Imports Notes from the Apple "Notes.app" app to Evernote.
tell application "Notes"
set theNotes to every note of the folder "Notes"
repeat with thisNote in theNotes
set myTitle to the name of thisNote
set myText to the body of thisNote
set myCreateDate to the creation date of thisNote
tell application "Evernote"
create note with html myText ¬
title myTitle ¬
created myCreateDate ¬
notebook "Imported Notes"
end tell
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment