Skip to content

Instantly share code, notes, and snippets.

@jhkchan
jhkchan / notes2evernote.scpt
Created October 12, 2020 17:06
Migrating all notes from Apple Notes to Evernote (work with latest macOS Catalina)
tell application "Notes"
launch -- seems to work better than 'activate'
repeat with anAccount in accounts
set accountTitle to the name of anAccount
repeat with aFolder in folders of anAccount
repeat with aNote in notes of aFolder
set myTitle to the name of aNote
set myText to the body of aNote
set myCreateDate to the creation date of aNote
set myModDate to the modification date of aNote