Last active
August 29, 2015 14:07
-
-
Save bradwright/8f8fde7d9e69d37a7301 to your computer and use it in GitHub Desktop.
Revisions
-
bradwright revised this gist
Jun 14, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,7 @@ 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 -
bradwright created this gist
Oct 9, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ Add this script in Automator as a service for "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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ tell application "Evernote" set _sel to selection if _sel ≠ {} then set aNote to first item of _sel set the clipboard to (get note link of aNote) end if end tell