Created
February 28, 2018 20:18
-
-
Save mbierman/f5198579426b1bcf77e0068d3f5d755f to your computer and use it in GitHub Desktop.
Auto upload to Evernote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.