Title: Re: How to Sync Fields that are in the Entourage Address Book that are not on the Palm
On or near 7/25/2002 4:55 PM, Peter Wait at [EMAIL PROTECTED] observed:
>
> I’m going to start with Birthday. My first attempt follows:
>
> tell application "Microsoft Entourage"
> set nbbd to every contact whose birthday � ""
> repeat with i from 1 to (count nbbd)
> set c to item i of nbbd
> tell c to set its note to (get its birthday)
> end repeat
> end tell
>
> But how do I specify, to put the birthday in the note after any lines that
> are already there, if any are; and not to just overlay the existing note?
>
Like this:
tell application "Microsoft Entourage"
set nbbd to every contact whose birthday � ""
repeat with i from 1 to (count nbbd)
set c to item i of nbbd
set temp to c’s note
tell c to set its note to (temp & return & (get its birthday))
end repeat
end tell
--
My web page: <http://home.earthlink.net/~allenwatson/>
My scripts page: <http:homepage.mac.com/allenwatson>
Microsoft MVP for Mac Entourage/Word--<[EMAIL PROTECTED]>
- How to Sync Fields that are in the Entourage Address Bookth... Peter Wait
- Re: How to Sync Fields that are in the Entourage Addre... Paul Berkowitz
- Re: How to Sync Fields that are in the Entourage A... Peter Wait
- Re: How to Sync Fields that are in the Entoura... Allen Watson
- Re: How to Sync Fields that are in the Ent... Peter Wait
- Re: How to Sync Fields that are in the Ent... Peter Wait
- Re: How to Sync Fields that are in th... Allen Watson
- Re: How to Sync Fields that are i... Peter Wait
