Last active
December 20, 2015 05:29
-
-
Save mathie/6078851 to your computer and use it in GitHub Desktop.
Automator Print Plugin to give you a menu item of "Save as PDF in Evernote". Just create a single "Run applescript" action with this code and save it.
This file contains 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 "Evernote" | |
repeat with pdf in input | |
create note from file pdf | |
end repeat | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment