Add this script in Automator as a service for "Evernote".
Last active
August 29, 2015 14:07
-
-
Save bradwright/8f8fde7d9e69d37a7301 to your computer and use it in GitHub Desktop.
Send current Evernote link to clipboard
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
tell application "Evernote" | |
set _sel to selection | |
if _sel ≠ {} then | |
set aNote to first item of _sel | |
set myNoteLink to note link of aNote | |
set the clipboard to myNoteLink | |
end if | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment