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

发布于 2024-11-01 14:00:20 字数 287 浏览 1 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经暖 2024-11-08 14:00:20

情况很复杂。查看来自 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文