Re: How to refresh a subscribed calendar?
Re: How to refresh a subscribed calendar?
- Subject: Re: How to refresh a subscribed calendar?
- From: Timothy Bates <email@hidden>
- Date: Mon, 16 Oct 2006 16:09:23 +0100
- Thread-topic: How to refresh a subscribed calendar?
> From: Robert Nicholson <email@hidden>
> What applescript API is there that can refresh a subscribed ical
> calendar?
You can reload calendars using
tell application "iCal" to reload calendars
But this doesn't refresh remote subscribed calendars.
Calendars themselves don't have a refresh verb, nor can you access the
auto-refresh property of a subscribed calendar by AppleScript.
So I think the only way would appear to be using system events:
tell application "iCal"
activate
tell application "System Events"
keystroke "R" using {command down, shift down}
end tell
end tell
Cheers,
tm
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden