Jump to content

BigRedling

Level 1
  • Posts

    1
  • Joined

  • Last visited

About BigRedling

Recent Profile Visitors

369 profile views

BigRedling's Achievements

  1. Sentinel's link to the AppleScript worked great for me on El Capitan! I love how it even got the dates! https://jeremyrnelson.wordpress.com/2014/01/19/importing-apple-notes-into-evernote/ However, there were a few changes I made to the script. I changed the smart quotes to straight quotes. I changed the "set the modification date of myNote to myCreateDate" to "set the modification date of myNote to myModDate". And I found all of the extra tags unnecessary, so I just used the tag "Imported from Notes" Also, Apple Script Editor is now called Script Editor, found in the Utilities folder. Below is my modified script, tested and it worked! Just copy and paste into Script Editor and hit the Run button and watch the magic right before your eyes! tell application "Notes" set theMessages to every note repeat with thisMessage in theMessages set myTitle to the name of thisMessage set myText to the body of thisMessage set myCreateDate to the creation date of thisMessage set myModDate to the modification date of thisMessage tell application "Evernote" set myNote to create note with text myTitle title myTitle notebook "Imported Notes" tags ["Imported from Notes"] set the HTML content of myNote to myText set the creation date of myNote to myCreateDate set the modification date of myNote to myModDate end tell end repeat end tell
×
×
  • Create New...