Skip to content

Instantly share code, notes, and snippets.

@macolyte
Created November 15, 2011 00:12
Show Gist options
  • Save macolyte/1365655 to your computer and use it in GitHub Desktop.
Save macolyte/1365655 to your computer and use it in GitHub Desktop.
Import files into Evernote
on open dropped_item
set file_list to items of dropped_item
repeat with a_file in file_list
tell application "Finder" to set c_date to creation date of a_file
tell application "Evernote" to create note from file a_file notebook Text_Notes created c_date
end repeat
end open
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment