Missing email addresses

Y

yang

Just installed 2004. In Entourage, when I go to compose a new message only
about 30% of my saved addresses are automatically available. What do I
need to copy over from my Entourage X?
 
M

Mickey Stevens

Copy the script below, everything between and including "tell application"
and "end tell"

tell application "Microsoft Entourage"
activate
set theContacts to (every contact)
repeat with theContact in theContacts
open theContact
close window 1
end repeat
beep 2
display dialog "All done" buttons {"OK"} default button 1 with icon 1
giving up after 3600
end tell

Then, launch Script Editor, which you can find in
/Applications/AppleScript/. Paste the script in, and click the "Run"
button. Wait for the script to finish, and then quit Script Editor. The
addresses now should appear in the AutoComplete list.
 
Top