Applescript,在某一天执行某些操作

时间:2015-05-20 14:55:35

标签: applescript dayofweek

我不确定这是否可行,但是有没有办法让脚本运行来检查当天以及它的星期一副本,例如,单元格A1,以及它的星期二复制单元格B2,依此类推等等。

2 个答案:

答案 0 :(得分:1)

是的,有办法,但这是一个两步的过程。一旦你有一个按你喜欢的方式工作的AppleScript,你设计一个每周一触发的Launch Daemon,它将运行该脚本。

答案 1 :(得分:0)

创建一个每24小时运行一次的“on idle”脚本。将此脚本保存为“保持打开”应用程序。

on idle

    -- Set variable d to the current date
    set {weekday:d} to (current date)

    -- Check if current date is equal to monday
    if d is equal to "mon" then
        -- Do your actions here
    end if

    -- Run this script every 86400 seconds (one day)
    return 86400

end idle