如何使用Applescript在iCal中显示某个定期事件?

时间:2011-04-12 17:38:38

标签: macos applescript icalendar

如何使用Applescript在iCal中显示某个重复发生的事件?

我目前使用的代码显示了该事件的第一次出现,而不是我感兴趣的那个。

tell application "iCal"
tell calendar CALENDAR_NAME
    set theEvent to first event whose uid = SOME_UID
end tell
if theEvent is not null then
    show theEvent
end if
end tell

1 个答案:

答案 0 :(得分:0)

这很复杂。看看MacScripter的这个样本。这是一个令人印象深刻的剧本。

http://macscripter.net/viewtopic.php?id=29516