Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Last active December 20, 2015 07:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brandonpittman/6096112 to your computer and use it in GitHub Desktop.
Save brandonpittman/6096112 to your computer and use it in GitHub Desktop.
Search Evernote for photos tagged "instagram" and are titled Untitled. Useful for forcing you to title photos automatically imported from Instagram to Evernote using IFTTT.
tell application "Evernote"
set instagram_photos to find notes "tag:instagram intitle:Untitled"
repeat with photo_title in instagram_photos
open note window with photo_title
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment