创建每日提醒,并显示通知剩余天数

创建每日提醒,并显示通知剩余天数

我想创建一个每日通知,显示距离事件发生还剩多少天(“还剩 1583 天...”)。

在 Macbook 上可以实现这个功能吗?

答案1

我一直在努力处理日期操作,尤其是 AppleScript。话虽如此,以下是我根据以下信息使用的方法来自 Apple

set minutes to 60
set hours to (minutes * 60)
set days to (hours * 24)

set myDate to current date -- Nov 4, 2016
log myDate
copy myDate to otherDate
set the day of otherDate to 1
set the month of otherDate to January
set the year of otherDate to 2017
set time of otherDate to "0" -- set time to midnight
set daysUntil to ((otherDate - myDate) / days) as integer
display dialog daysUntil & " until New Year's Day, 2017" as string

我确信有更简单的方法可以做到这一点,但我需要使用此功能就这么多了。

相关内容