Skip to content

Instantly share code, notes, and snippets.

@mathie
Last active December 20, 2015 05:29
Show Gist options
  • Save mathie/6078851 to your computer and use it in GitHub Desktop.
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.
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