Applescript 刷新 iCal 中的所有日历

发布于 2024-11-05 05:05:51 字数 181 浏览 0 评论 0原文

我尝试使用此代码刷新 iCal(Shift-Command-R) 中的所有日历,但它似乎不起作用。

tell application "iCal"
    launch
    reload calendars
end tell

执行此操作的 Applescript 命令是什么?

I tried this code to refresh all the calendars in iCal(Shift-Command-R), but it doesn't seem to work.

tell application "iCal"
    launch
    reload calendars
end tell

What's the Applescript command to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

巡山小妖精 2024-11-12 05:05:51

该功能可能未内置到 iCal 词典中。除了您已经使用的重新加载日历命令之外,我找不到任何其他内容。您唯一的选择是使用 GUI 脚本 来选择菜单项或按组合键。

tell application "iCal" to activate
tell application "System Events"
    tell process "iCal"
        keystroke "r" using {command down, shift down}
    end tell
end tell

It may be that the functionality isn't built into the iCal dictionary. I couldn't find anything other than the reload calendars command you're already using. You're only other option would be to use GUI scripting to select the menu item or press the key combination.

tell application "iCal" to activate
tell application "System Events"
    tell process "iCal"
        keystroke "r" using {command down, shift down}
    end tell
end tell
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文