AppleScript:一天后递增和重置

时间:2016-08-13 20:40:10

标签: count applescript increment counting

我将AppleScript保存为应用程序,我每天运行几次,我想添加一个计数器。

constexpr

即使我关闭并再次打开脚本,每次脚本运行时都会加1,但是如何重置呢?

我的意思是我的目标是计算" case"每天然后从第二天开始。

如何在第二天自动重置?

干杯

1 个答案:

答案 0 :(得分:2)

试试这个,它使用当前日期的附加属性。

property today : missing value
property currentCount : 0

increment()

on increment()
    set currentDate to short date string of (current date)
    if currentDate is not today then
        set today to currentDate
        set currentCount to 0
    end if
    set currentCount to currentCount + 1
    display dialog "Count is now " & currentCount & "."
end increment