Re: AppleScript for emptying Entourage Calendar cache
by Mason Rove <mason@[EMAIL PROTECTED]
>
May 8, 2008 at 05:18 PM
I figured it out so I thought I'd share with everyone.
What worked for me is:
tell application "Microsoft Entourage"
tell Exchange account 1 to empty cache of calendar 1
end tell
and the osascript version is:
/usr/bin/osascript -e 'tell application "Microsoft Entourage" to tell
Exchange account 1 to empty cache of calendar 1'
On 5/8/08 11:25 AM, in article C4489390.4204%mason@[EMAIL PROTECTED]
"Mason
Rove" <mason@[EMAIL PROTECTED]
> wrote:
> I'm trying to figure out the AppleScript Entourage "empty cache" command
but
> can't figure out the syntax and can't find anything on Google.
>
>
> Basically all I have is this:
>
> tell application "Microsoft Entourage"
> empty cache of Exchange calendar
> end tell
>
> I've tried various paths after the Exchange calendar part but always get
> errors.
>
> Anyone know the proper syntax?
>