Re: Help with Entourage/Outlook
Re: Help with Entourage/Outlook
- Subject: Re: Help with Entourage/Outlook
- From: Paul Berkowitz <email@hidden>
- Date: Sun, 17 Dec 2000 19:54:53 -0800
On 12/17/00 7:49 PM, I wrote:
>
set theAttachements to (every attachment of theMsg)
>
repeat with i from 1 to (count theAttachements )
>
set theAttachment to item i of theAttachments
>
set attachName to name of theAttachment
>
save theAttachement in ((path to desktop) as string) & attachName)
>
--etc. end repeat
>
I always seem to include some typos. I kept spelling things differently in
that snippet, so it won't work. Do:
set theAttachments to (every attachment of theMsg)
repeat with i from 1 to (count theAttachments )
set theAttachment to item i of theAttachments
set attachName to name of theAttachment
save theAttachment in ((path to desktop) as string) & attachName)
--etc.
end repeat
--
Paul Berkowitz