選択しているノートに日付設定なしのリマインダーを指定する。
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