As we known, in Entourage 2004, contacts in Address Book list in
alphabetically by last name. How can we alphabetize it by first name?
Copy the full name into either nickname or a custom field and sort on that.
You can even move that column to the extreme left after making it visible
via View/Columns.
Run this script in Script Editor:
tell application "Microsoft Entourage"
repeat with aContact in (every contact)
set nickname of aContact to its name
end repeat
activate
display dialog "All done!"
end tell
You can replace the 'nickname' line by
set custom field three of aContact to its name
using one to eight as desired.
In future when you make new contacts, just do it manually in the contact.
--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <
http://www.entourage.mvps.org/faq/index.html>
AppleScripts for Entourage: <
http://macscripter.net/scriptbuilders/>
Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.
PLEASE always state which version of Microsoft Office you are using -
**2004**, X or 2001. It's often impossible to answer your questions
otherwise.