How to determine the 'Me' record in Entourage

S

SteveCronin

Folks;

You can use the menu 'This contact is Me' to flag an entry in the
Entourage Address Book as yourself.

Is there a way to determine that contact using AppleScript?

Steve
 
C

Corentin Cras-Méneur

SteveCronin said:
Folks;

You can use the menu 'This contact is Me' to flag an entry in the
Entourage Address Book as yourself.

I suspect you are trying to do this with en Exchange account, which is
not possible (just in case your account gets offline - the me contact
might be inaccessible, or not up to date).,
Entourage requires that you use a local contact as Me. 9even if it means
having only one contact: the Me, in the On My Computer address book).

Corentin
 
S

SteveCronin

I suspect you are trying to do this with en Exchange account, which is
not possible (just in case your account gets offline - the me contact
might be inaccessible, or not up to date).,
Entourage requires that you use a local contact as Me. 9even if it means
having only one contact: the Me, in the On My Computer address book).

Corentin

--
          --- Office:Mac MVP  http://www.cortig.net/wordpress/---
       http://www.mvps.org      -    http://mvp.support..microsoft.com
    MVPs are not MS employees    -    Les MVP ne travaillent pas pour MS
 Remove "NoSpam" to e-mail me    -      Retirez "NoSpam" pourm'écrire

Corentin;

Thanks for adding some clarity but no I am not trying to do this with
an
Exchange account.

I am running Entourage on a local mac - I want to use AppleScript to
ask Entourage:
What is the name and email address of the 'Me' record.

Steve
 
C

Corentin Cras-Méneur

SteveCronin said:
Corentin;

Hi Steve,
Thanks for adding some clarity but no I am not trying to do this with
an
Exchange account.

I am running Entourage on a local mac - I want to use AppleScript to
ask Entourage:
What is the name and email address of the 'Me' record.


I see what you mean. Unfortrunately, I don't know the way to do this
through AppleScript :-\

Corentin
 
D

Diane Ross

Is there a way to determine that contact using AppleScript?

The icon is different for the Me contact, but you should be able to sort by
name to find what's selected.

You can create a category named "me" and assign it to the contact to use in
rules etc.
 
W

William Smith [MVP]

SteveCronin said:
You can use the menu 'This contact is Me' to flag an entry in the
Entourage Address Book as yourself.

Is there a way to determine that contact using AppleScript?

You didn't really specify what you're after, but this will return some
information in the AppleScript Editor:

tell application "Microsoft Entourage"
name of me contact
address of me contact
end tell

Hope this helps!

--

bill

Entourage Help Page <http://entourage.mvps.org/>
Entourage Help Blog <http://blog.entourage.mvps.org/>
YouTalk <http://nine.pairlist.net/mailman/listinfo/youtalk>
Twitter: follow <http://twitter.com/meck>
 
S

SteveCronin

You didn't really specify what you're after, but this will return some
information in the AppleScript Editor:

tell application "Microsoft Entourage"
        name of me contact
        address of me contact
end tell

Hope this helps!

--

bill

Entourage Help Page <http://entourage.mvps.org/>
Entourage Help Blog <http://blog.entourage.mvps.org/>
YouTalk <http://nine.pairlist.net/mailman/listinfo/youtalk>
Twitter: follow <http://twitter.com/meck>

Bill;

BINGO - this is what I was asking for!
Yeah!! Where did you find this information?

Steve
 
Top