I had forgotten how awesome AppleScript can be until I Googled how to make this happen.
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
Glad to help – I got it from somebody else myself in the first place!