Created
November 15, 2011 00:12
-
-
Save macolyte/1365655 to your computer and use it in GitHub Desktop.
Import files into Evernote
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
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