如何使用 Applescript 在 iCal 中显示某个重复发生的事件?
如何使用 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
How can I show a certain recurring event in iCal with Applescript?
The code I use currently shows the first occurrence of that event, not the one I'm interested in.
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
情况很复杂。查看来自 MacScripter 的示例脚本。这是一个非常令人印象深刻的剧本。
http://macscripter.net/viewtopic.php?id=29516
It's complicated. Look at this samplescript from MacScripter. It's a pretty impressive script.
http://macscripter.net/viewtopic.php?id=29516