I don't know if anyone has asked this question, I have a question about
arranging my address book, basically, I want the address book arrange by
first name and it seems entourage arrange by last name on default.

Thanks
Xu

Re: Mac entourage address book arrangement question by Paul

Paul
Sat Nov 27 18:00:31 CST 2004

On 11/27/04 2:46 PM, in article BDCEB458.730%xu@hotmail.co.uk, "Xu Han"
<xu@hotmail.co.uk> wrote:

> I don't know if anyone has asked this question, I have a question about
> arranging my address book, basically, I want the address book arrange by
> first name and it seems entourage arrange by last name on default.

Copy the first name, or whole name, into the nickname field and sort by
Nickname. You can do it for existing contacts by running a script:

tell application "Microsoft Entourage"
repeat with theContact in (every contact)
tell theContact to set nickname to its name
end repeat
beep
activate
display dialog "All done!"
end tell

This version puts the whole name into the nickname field. Then go to
View/Columns and make sure you have Nickname field, and click its header to
sort by that field. You can even drag it over to the left. You could use a
custom field if you prefer.

--
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.


Re: Mac entourage address book arrangement question by Xu

Xu
Sat Nov 27 18:21:28 CST 2004

Thanks, and that's a really good idea


On 28/11/04 12:00 am, in article BDCE551F.7C512%berkowit@spoof_silcom.com,
"Paul Berkowitz" <berkowit@spoof_silcom.com> wrote:

> On 11/27/04 2:46 PM, in article BDCEB458.730%xu@hotmail.co.uk, "Xu Han"
> <xu@hotmail.co.uk> wrote:
>
>> I don't know if anyone has asked this question, I have a question about
>> arranging my address book, basically, I want the address book arrange by
>> first name and it seems entourage arrange by last name on default.
>
> Copy the first name, or whole name, into the nickname field and sort by
> Nickname. You can do it for existing contacts by running a script:
>
> tell application "Microsoft Entourage"
> repeat with theContact in (every contact)
> tell theContact to set nickname to its name
> end repeat
> beep
> activate
> display dialog "All done!"
> end tell
>
> This version puts the whole name into the nickname field. Then go to
> View/Columns and make sure you have Nickname field, and click its header to
> sort by that field. You can even drag it over to the left. You could use a
> custom field if you prefer.


Re: Mac entourage address book arrangement question by Xu

Xu
Sat Nov 27 18:36:12 CST 2004

Sorry, the script seems not working, I am using entourage 2004.

Thx again


On 28/11/04 12:21 am, in article BDCECA88.B34%xu@hotmail.co.uk, "Xu Han"
<xu@hotmail.co.uk> wrote:

> Thanks, and that's a really good idea
>
>
> On 28/11/04 12:00 am, in article BDCE551F.7C512%berkowit@spoof_silcom.com,
> "Paul Berkowitz" <berkowit@spoof_silcom.com> wrote:
>
>> On 11/27/04 2:46 PM, in article BDCEB458.730%xu@hotmail.co.uk, "Xu Han"
>> <xu@hotmail.co.uk> wrote:
>>
>>> I don't know if anyone has asked this question, I have a question about
>>> arranging my address book, basically, I want the address book arrange by
>>> first name and it seems entourage arrange by last name on default.
>>
>> Copy the first name, or whole name, into the nickname field and sort by
>> Nickname. You can do it for existing contacts by running a script:
>>
>> tell application "Microsoft Entourage"
>> repeat with theContact in (every contact)
>> tell theContact to set nickname to its name
>> end repeat
>> beep
>> activate
>> display dialog "All done!"
>> end tell
>>
>> This version puts the whole name into the nickname field. Then go to
>> View/Columns and make sure you have Nickname field, and click its header to
>> sort by that field. You can even drag it over to the left. You could use a
>> custom field if you prefer.
>


Re: Mac entourage address book arrangement question by Paul

Paul
Sat Nov 27 18:55:19 CST 2004

It was missing a 'get' needed in this case.

Here:

tell application "Microsoft Entourage"
set allContacts to (every contact)
repeat with theContact in allContacts
tell theContact to set its nickname to (get its name)
end repeat
beep
activate
display dialog "All done!"
end tell


--
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.


> From: Xu Han <xu@hotmail.co.uk>
> Newsgroups: microsoft.public.mac.office.entourage
> Date: Sun, 28 Nov 2004 00:36:12 +0000
> Subject: Re: Mac entourage address book arrangement question
>
> Sorry, the script seems not working, I am using entourage 2004.
>
> Thx again
>
>
> On 28/11/04 12:21 am, in article BDCECA88.B34%xu@hotmail.co.uk, "Xu Han"
> <xu@hotmail.co.uk> wrote:
>
>> Thanks, and that's a really good idea
>>
>>
>> On 28/11/04 12:00 am, in article BDCE551F.7C512%berkowit@spoof_silcom.com,
>> "Paul Berkowitz" <berkowit@spoof_silcom.com> wrote:
>>
>>> On 11/27/04 2:46 PM, in article BDCEB458.730%xu@hotmail.co.uk, "Xu Han"
>>> <xu@hotmail.co.uk> wrote:
>>>
>>>> I don't know if anyone has asked this question, I have a question about
>>>> arranging my address book, basically, I want the address book arrange by
>>>> first name and it seems entourage arrange by last name on default.
>>>
>>> Copy the first name, or whole name, into the nickname field and sort by
>>> Nickname. You can do it for existing contacts by running a script:
>>>
>>> tell application "Microsoft Entourage"
>>> repeat with theContact in (every contact)
>>> tell theContact to set nickname to its name
>>> end repeat
>>> beep
>>> activate
>>> display dialog "All done!"
>>> end tell
>>>
>>> This version puts the whole name into the nickname field. Then go to
>>> View/Columns and make sure you have Nickname field, and click its header to
>>> sort by that field. You can even drag it over to the left. You could use a
>>> custom field if you prefer.
>>
>


Re: Mac entourage address book arrangement question by Xu

Xu
Sat Nov 27 18:57:56 CST 2004

> This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--B_3184448277_815396
Content-type: text/plain;
charset="US-ASCII"
Content-transfer-encoding: 7bit

Thx, I've done it by entering it manually, but it's a very useful script.

Thanks


On 28/11/04 12:55 am, in article BDCE61F7.7C522%berkowit@spoof_silcom.com,
"Paul Berkowitz" <berkowit@spoof_silcom.com> wrote:

> It was missing a 'get' needed in this case.
>
> Here:
>
> tell application "Microsoft Entourage"
> set allContacts to (every contact)
> repeat with theContact in allContacts
> tell theContact to set its nickname to (get its name)
> end repeat
> beep
> activate
> display dialog "All done!"
> end tell
>


--B_3184448277_815396
Content-type: text/html;
charset="US-ASCII"
Content-transfer-encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Re: Mac entourage address book arrangement question</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Monaco, Courier New"><SPAN STYLE=3D'font-size:10.0px'>Thx, I've d=
one it by entering it manually, but it's a very useful script.<BR>
<BR>
Thanks<BR>
<BR>
<BR>
On 28/11/04 12:55 am, in article BDCE61F7.7C522%berkowit@spoof_silcom.com, =
&quot;Paul Berkowitz&quot; &lt;berkowit@spoof_silcom.com&gt; wrote:<BR>
<BR>
<FONT COLOR=3D"#0000FF">&gt; It was missing a 'get' needed in this case.<BR>
&gt; <BR>
&gt; Here:<BR>
&gt; <BR>
&gt; tell application &quot;Microsoft Entourage&quot;<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;set allContacts to (every contact)<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;repeat with theContact in allContacts<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tell theContact to set=
its nickname to (get its name)<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;end repeat<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;beep<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;activate<BR>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;display dialog &quot;All done!&quot;<BR>
&gt; end tell<BR>
&gt; <BR>
</FONT></SPAN></FONT>
</BODY>
</HTML>


--B_3184448277_815396--


sorry, but this beats me. by johan

johan
Thu Dec 02 08:44:54 CST 2004

Hi,

I am Johan Kramer from the Netherlands.
I have bought 2 copies off office x, each copy costing me over $600.
Now off late I decided to use the pim function Entourage can perform,
so I tried.
What a total disappointment!
I only have 8 free character fields, 2 free date fields, a lot off
e-mail address entries, a lot off phone entries but.....
I can't sort on first name or on zip code, the utter most common mode
of arranging personal data.
I simply can't print a label within entourage, let alone perform a mail
merge.
For that, I must switch to Word, in which I only have even more limited
filtering and sorting options within the addressbook (they want me to
select manualy, can you believe? living in the middle ages or what?)
then within Entourage.
To enter data in Excel, I have to use the export function in the file
menu.
Whitin that option, I don't have the opportunity to select fields to
which file format I want.
Excel itself doesn't even recognize the entourage database itself!
How about integration.
I can't believe I'm writing this.
The solution?
Use a script!
Where did I pay my $1200 for??
Can anyone please explane to me, and when and where I can get a copy
that performs reasonbly well as a pim?

tanx in advance and sorry for the outburst, but I still can't believe.
If some obscure compagny had written the suite, ok. But....
Johan Kramer