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
tell application "Evernote" | |
activate | |
set theNote to create note with text "ABC" | |
set tags of theNote to {tag "Tag 1", tag "Tag 2"} | |
end tell |
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
set theSavePath to path to desktop folder as string | |
tell application "Mail" | |
selection | |
set theMessage to item 1 of result | |
set theAttachments to every mail attachment of theMessage | |
repeat with anAttachment in theAttachments | |
set theName to name of anAttachment | |
save anAttachment in file (theSavePath & theName) | |
end repeat | |
end tell |
OlderNewer