Categories

A

Andy Black

Hi,

Is there a way to have any new calendar or address book entry automatically
be added to a particular category? I was looking for a way to have all the
events added on via our Exchange server show up in one category and events
that I add show up in another category. I can change the category as I add
an event in Entourage but the other part has me stumped.

Thanks,

Andy
 
P

Paul Berkowitz

Is there a way to have any new calendar or address book entry automatically
be added to a particular category? I was looking for a way to have all the
events added on via our Exchange server show up in one category and events
that I add show up in another category. I can change the category as I add
an event in Entourage but the other part has me stumped.

If you add a "Manual" category to every contact you add yourself (even
contacts which have other categories as well), then every contact which does
not have a Manual category must be one added by Exchange.

--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: <http://www.entourage.mvps.org/toc.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 Entourage you are using - 2001 or X.
It's often impossible to answer your questions otherwise.
 
D

Dave Cortright

Hi,

Is there a way to have any new calendar or address book entry automatically
be added to a particular category? I was looking for a way to have all the
events added on via our Exchange server show up in one category and events
that I add show up in another category. I can change the category as I add
an event in Entourage but the other part has me stumped.

In your Exchange account preferences, there is an option to only sync
calendar and contact items that are on a certain category. You can choose
that option, and then the items that are on the Exchange server should show
up in that category.

To create events and contacts that automatically have this category, you can
use AppleScripts:

tell application "Microsoft Entourage"
set c to category named "Work"
set x to make new contact with properties {category:c}
open x
end tell

tell application "Microsoft Entourage"
set c to category named "Work"
set x to make new event with properties {category:c}
open x
end tell
 
Top