Address Book

M

Marc Monaro

Does anyone know how to separate the Address book and personal contacts so
that when a new email is created, all email address are not displayed in the
To: and cc: fields when trying to pick an email address?

Thanks!
mm
 
B

Barry N. Wainwright

Does anyone know how to separate the Address book and personal contacts so
that when a new email is created, all email address are not displayed in the
To: and cc: fields when trying to pick an email address?

Thanks!
mm

You can turn the recent address mapping feature off completely in the
preferences, under the 'compose' tab


--
Barry Wainwright
Microsoft MVP (see http://mvp.support.microsoft.com for details)
Seen the Entourage FAQ pages? - Check them out:
<http://www.entourage.mvps.org/toc.html>

Please post responses to this newsgroup. If I ask you to contact me
off-list, remove '.INVALID' from email address before replying.
 
M

Marc Monaro

Excellent!
How about this...

When I create a new mail, how can I get my companies Global Address Book to
appear in the window beside the field where I enter the email address. Right
now it displays my "Personal Address Book".


mm
 
M

Mickey Stevens

You can't. However, you can click the "Check Names" button in the
addressing window, or you can open the GAL in a separate window (Tools ->
Directory Services).

That would be a neat feature, admittedly. Why not submit it to Microsoft?
In Entourage X, go to Help -> Send Feedback on Entourage. Otherwise, click
on this direct link to enter Mac Product Feedback:
<http://www.microsoft.com/mac/feedback/suggestion.asp>
 
F

frannbug

How can I get my address book to sort by surname? It sorts everything
by first name at the moment. I know you can sort by column, but the
name fields are integrated into one. Anyway, I would like to sort by
category, but still have the names sorted within those categories
according to surname. I am using Entourage X for Mac, version 10.1.1
(2418) on a G4 AGP graphics PowerMac.
 
P

Paul Berkowitz

How can I get my address book to sort by surname? It sorts everything
by first name at the moment. I know you can sort by column, but the
name fields are integrated into one. Anyway, I would like to sort by
category, but still have the names sorted within those categories
according to surname. I am using Entourage X for Mac, version 10.1.1
(2418) on a G4 AGP graphics PowerMac.

The Address Book DOES sort by surname - it's impossible to get it to sort by
first name. It's just that it displays the name in 'First name Last name'
order. But it's sorted by last name. If you want it to display just the
surname, or in 'Last name, First name' order, then copy either just the Last
name, or else type 'Last name, First name' into the nickname field and then
sort by Nickname (click on Nickname column header).

To do that for all your contacts in one fell swoop, you can do it by script.
Since you only need to do this once (from now on, make sure to fill in the
nickname of new contacts when you make them) you can just do it form Script
Editor. The super-simple method:

tell application "Microsoft Entourage"
set allContacts to every contact
repeat with i from 1 to (count allContacts)
set theContact to item i of allContacts
set nickname of theContact to (get last name of theContact)
end repeat
display dialog "All done!"
end tell

would leave you with blank fields when a contact doesn't have a last name.
Here's a more elaborate script that does the 'Last name, First name' thing
when a contact has both, or just last or first when it has just one or the
other, or company when it has neither, or email address when it has none of
the above. (Past that point, it stays blank!)


tell application "Microsoft Entourage"
set allContacts to every contact
repeat with i from 1 to (count allContacts)
set theContact to item i of allContacts
tell theContact
set {lName, fName} to {last name, first name}
if lName ‚ "" and fName ‚ "" then
set nickname to (lName & ", " & fName)
else if fName ‚ "" or lName ‚ "" then
set nickname to (lName & fName)
else if company ‚ "" then
set nickname to (get company)
else if every email address of it ‚ {} then
set nickname to default email address
end if
end tell
end repeat
beep 2
display dialog "All done!"
end tell


Now add the Nickname column in View/Columns, and click on the Nickname
column header. You can also drag the Nickname column header to the far left
if you wish. There you are.

--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: http://www.entourage.mvps.org/toc.html

Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.

PLEASE always state which version of Entourage you are using - 2001 or X.
It's often impossible to answer your questions otherwise.
 
Top