Created
October 22, 2013 16:42
-
-
Save fractaledmind/7103955 to your computer and use it in GitHub Desktop.
This Applescript will get the local url for the currently selected Evernote note.
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
| tell application "Evernote" | |
| set x to selection | |
| repeat with i from 1 to count of x | |
| set theurl to note link of item i of x | |
| end repeat | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment