Skip to content

Instantly share code, notes, and snippets.

@mbierman
Created February 28, 2018 20:18
Show Gist options
  • Select an option

  • Save mbierman/f5198579426b1bcf77e0068d3f5d755f to your computer and use it in GitHub Desktop.

Select an option

Save mbierman/f5198579426b1bcf77e0068d3f5d755f to your computer and use it in GitHub Desktop.
Auto upload to Evernote
on run {input, parameters}
tell application "/Applications/Evernote.app" to run
repeat with this_item in the input
set the item_info to info for this_item
tell application id "com.evernote.evernote"
activate
create note from file this_item
end tell
end repeat
return input
end run
@mbierman
Copy link
Author

This is a Folder Action that takes any new files added to the folder specified in Automator and uploads to Evernote for you.

You must have Evernote Installed and you have to already be logged into your account.

Note you may also want to make the following Print Plugin Automator Script which will allow you to "print" a PDF directly to that folder which will then be saved to Evernote for you. Just be sure to make sure both scripts point at the same folder.

screen shot 2018-02-28 at 12 20 43 pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment