Applescript 刷新 iCal 中的所有日历
我尝试使用此代码刷新 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该功能可能未内置到 iCal 词典中。除了您已经使用的
重新加载日历
命令之外,我找不到任何其他内容。您唯一的选择是使用 GUI 脚本 来选择菜单项或按组合键。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.