我想在 Applescript 中编辑提醒,并为每个未注明日期的提醒设置今天的日期,但没有时间。 (不是午夜 - 没有时间。)
tell application "Reminders"
repeat with r in every reminder
set creationDate to creation date of r
if (due date of r is missing value) then
set due date of r to current date
end if
end repeat
end tell
这不起作用 - 它将截止日期设置为今天和当前时间。我尝试将时间设置为 0,但这只是设置为午夜。 Null 根本不起作用。
我想通了。唯一需要改变的是
set allday due date
。