Applescript 设置带日期但不带时间的提醒

问题描述 投票:0回答:1

我想在 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 根本不起作用。

applescript reminders
1个回答
0
投票

我想通了。唯一需要改变的是

set allday due date

© www.soinside.com 2019 - 2024. All rights reserved.