Jim (in Davis, CA, too)
On 7/23/02 2:29 PM, Jan Martel <[EMAIL PROTECTED]> wrote:
I don't remember where it originally was, perhaps the Value Pack for 2001? But here it is, as a script that runs under EvX. Btw, I think the reason for the swapped addresses is that the Palm handheld only has one address and thinks that one should be the work address (?) so it messed things up if you originally sync'ed from Palm to E'rage - at least it seems to me that the contacts I have with swapped addresses are old ones that I probably originally got into E'rage from the Palm.
tell application "Microsoft Entourage"
set theItems to selection
repeat with i in the theItems
if class of i is contact then
set StartAddress to the (home address of i)
set DestinationAddress to the (business address of i)
set the home address of i to DestinationAddress
set the business address of i to StartAddress
end if
end repeat
end tell
