Jump to content
  • 0

Can't Move to Notebook with Applescript


Scooter

Idea

3 replies to this idea

Recommended Posts

I tried your code and it seems to work perfectly when just one single note is selected.

 

When I try it with more than one note selected, I get the following error:

Evernote got an error: Can’t make {note id "x-coredata://XXXXXX-XXXX-XXXX-XXXX-XXXXXXXX/ENNote/p12345" of notebook "_Inbox", note id "x-coredata://XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/ENNote/p54321" of notebook "_Inbox"} into type specifier.

 

 

You will need to move each note of the selection separately, like so:

 

tell application "Evernote"

   repeat with oneNote in selection

       move oneNote to notebook "Specific Notebook"

   end repeat

end tell

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...