Title: Re: Changing email domains and Company via Script
On or near 8/5/03 3:49 PM, Michael Scheurer at [EMAIL PROTECTED] observed:

> Hi all,
> the place I work for has recently changed names and email domain. I'm
> looking to change 400+ contacts. I'll need to change Company name and the
> domain name in selected email addresses.
>
> Before I start to write a script, has anyone written such an animal already?
>
>
I've not seen anything posted, but it should be straightforward enough. Go for it! You might start with:

    tell application "Microsoft Entourage"
        set ourStaff to every contact whose Company is "Consolidated Widgets" -- Use appropriate company name
        repeat with aContact in ourStaff
            -- Do stuff here
        end repeat
    end tell
--
Microsoft MVP for Entourage/OE/Word (MVPs are volunteers)
Allen Watson <[EMAIL PROTECTED]> Entourage FAQ site: <http://www.entourage.mvps.org/>
AppleScripts for Outlook Express and Entourage:
 <http://members.thinkaccess.net/[EMAIL PROTECTED]/Scripts/>
Entourage Help Pages: <http://www.entourage.mvps.org/>

Reply via email to