Jump to content

ROK&ROLL

Level 1
  • Posts

    8
  • Joined

  • Last visited

Everything posted by ROK&ROLL

  1. Worked like a charm. Perfect, I honestly can't thank you enough. Just transferred close to 150 notes, all in their respective folders. Thank you!!
  2. Thank you working on this. With the changes you recommended. I get the error below. Syntax Error Expected end of line, etc. but found identifier. My full script with changes below - tell application "Notes" set theMessages to every note repeat with thisMessage in theMessages set mycontainer to container of thisMessage set myfolder to name of mycontainer as string 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" if (not (notebook named myfolder exists)) then create notebook myfolder set myNote to create note with text myTitle title myTitle notebook myfolder 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
  3. Posted October 14, 2015 Thank you - script below. - tell application "Notes" set theMessages to every note repeat with thisMessage in theMessages set myfolder to container of thisMessage 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 notebook of myNote to myfolder set the creation date of myNote to myCreateDate set the modification date of myNote to myModDate end tell end repeat end tell
  4. It says the variable 'the message" is not defined. Any thoughts?
  5. Amazing, thank you. Is that under "tell Notes" or "tell Evernote" ? I'm very new to script. Would you mind posting the full script - with the additional "Folder" modification?
  6. Bit of a Hail Mary, but is there any way to import notes from Apple Notes, to Evernote, and keep the notes organised in their original folders. Not all notes in a single Evernote Notebook I have hundreds of notes in about 20 different folders. Would like to keep them organised on import to Evernote. Thanks
  7. To anyone who comes across this thread, (May 2018) I used the script above, posted and modified by the guys above. it 100% worked. Just imported 200 notes to Evernote in 40 seconds. Life saver. Thank you.
×
×
  • Create New...