Skip to content

Instantly share code, notes, and snippets.

@rashita
Created June 28, 2015 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rashita/849bf5a8d0091038ce7e to your computer and use it in GitHub Desktop.
Save rashita/849bf5a8d0091038ce7e to your computer and use it in GitHub Desktop.
選択しているノートに日付設定なしのリマインダーを指定する。
tell application "Evernote"
set selectednote to selection
if (length of selectednote) is not 0 then
repeat with i in selectednote
set reminder order of i to (current date)
end repeat
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment