Is there any way to automatically change the status of a message to
"read" when it's manually moved to the Deleted Items folder? I tried:
If
Folder Is Deleted Items
Then
Change Status Read

but it doesn't do anything. I.e., deleting one or more unread messages
in the Inbox doesn't change their status in Deleted Item

--
to respond, change "spamless.invalid" with "optonline.net"
please mail OT responses only

Re: changing message status (Entourage X) by Barry

Barry
Mon May 17 15:41:10 CDT 2004

On 17/5/04 9:02 pm, in article
heimdall-F533C8.16030517052004@news4.srv.hcvlny.cv.net, "Scott"
<heimdall@spamless.invalid> wrote:

> Is there any way to automatically change the status of a message to
> "read" when it's manually moved to the Deleted Items folder? I tried:
> If
> Folder Is Deleted Items
> Then
> Change Status Read
>
> but it doesn't do anything. I.e., deleting one or more unread messages
> in the Inbox doesn't change their status in Deleted Item

Where did you try this? In a mail rule? They only run automatically on new
messages as they arrive, or they can be run manually on selected messages.
Neither option will give you what you want.

Try this script...

Tell app "Microsoft Entourage"
Set theMessages to every message of folder id 5 whose read status is not
read
Set read status of themessages to read
End tell

Save this script as a compiled script in the Entourage Script Menu Items
folder, and you can either select it to run it manually, or create a
repeating schedule that runs every ten minutes or so to run this script.


Note: That script is designed for Entourage 2004 - if you get an error in
the next to last line in Entourage x, you may need to replace that
particular line with:

Repeat with aMessage in themessages
Set read status of amessage to read
End repeat

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


Re: changing message status (Entourage X) by Paul

Paul
Mon May 17 16:06:27 CDT 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_3167647588_9631374
Content-type: text/plain;
charset="US-ASCII"
Content-transfer-encoding: 7bit

On 5/17/04 1:41 PM, in article BCCEE1F6.15AAA%barry@mvps.org.INVALID, "Barry
Wainwright" <barry@mvps.org.INVALID> wrote:

> On 17/5/04 9:02 pm, in article
> heimdall-F533C8.16030517052004@news4.srv.hcvlny.cv.net, "Scott"
> <heimdall@spamless.invalid> wrote:
>
>> Is there any way to automatically change the status of a message to
>> "read" when it's manually moved to the Deleted Items folder? I tried:
>> If
>> Folder Is Deleted Items
>> Then
>> Change Status Read
>>
>> but it doesn't do anything. I.e., deleting one or more unread messages
>> in the Inbox doesn't change their status in Deleted Item
>
> Where did you try this? In a mail rule? They only run automatically on new
> messages as they arrive, or they can be run manually on selected messages.
> Neither option will give you what you want.
>
> Try this script...
>
> Tell app "Microsoft Entourage"
> Set theMessages to every message of folder id 5 whose read status is not
> read
> Set read status of themessages to read
> End tell

That will only work in Entourage 2004, I believe. To have it work in either
Entourage X or 2004, or 2001, it would have to be:

tell app "Microsoft Entourage"
set read status of (every message of folder id 5 whose read status is
not read) to read
End tell
>
> Save this script as a compiled script in the Entourage Script Menu Items
> folder, and you can either select it to run it manually, or create a
> repeating schedule that runs every ten minutes or so to run this script.
>
>
> Note: That script is designed for Entourage 2004 - if you get an error in
> the next to last line in Entourage x, you may need to replace that
> particular line with:

Aha. Yes, you could do it the slow way, in a repeat loop. But it's not
necessary: you can do it the fast way even in X, as above.
>
> Repeat with aMessage in themessages
> Set read status of amessage to read
> End repeat


--
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 - **2004**, X
or 2001. It's often impossible to answer your questions otherwise.


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

<HTML>
<HEAD>
<TITLE>Re: changing message status (Entourage X)</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:12.0px'>On 5/=
17/04 1:41 PM, in article BCCEE1F6.15AAA%barry@mvps.org.INVALID, &quot;Barry=
Wainwright&quot; &lt;barry@mvps.org.INVALID&gt; wrote:<BR>
<BR>
<FONT COLOR=3D"#0000FF">&gt; On 17/5/04 9:02 pm, in article<BR>
&gt; heimdall-F533C8.16030517052004@news4.srv.hcvlny.cv.net, &quot;Scott&qu=
ot;<BR>
&gt; &lt;heimdall@spamless.invalid&gt; wrote:<BR>
&gt; <BR>
</FONT><FONT COLOR=3D"#008000">&gt;&gt; Is there any way to automatically cha=
nge the status of a message to<BR>
&gt;&gt; &quot;read&quot; when it's manually moved to the Deleted Items fol=
der? I tried:<BR>
&gt;&gt; If<BR>
&gt;&gt; Folder Is Deleted Items<BR>
&gt;&gt; Then<BR>
&gt;&gt; Change Status Read<BR>
&gt;&gt; <BR>
&gt;&gt; but it doesn't do anything. I.e., deleting one or more unread mess=
ages<BR>
&gt;&gt; in the Inbox doesn't change their status in Deleted Item<BR>
</FONT><FONT COLOR=3D"#0000FF">&gt; <BR>
&gt; Where did you try this? In a mail rule? They only run automatically on=
&nbsp;new<BR>
&gt; messages as they arrive, or they can be run manually on selected messa=
ges.<BR>
&gt; Neither option will give you what you want.<BR>
&gt; <BR>
&gt; Try this script... <BR>
&gt; <BR>
&gt; Tell app &quot;Microsoft Entourage&quot;<BR>
&gt; Set theMessages to every message of folder id 5 whose read status is n=
ot<BR>
&gt; read<BR>
&gt; Set read status of themessages to read<BR>
&gt; End tell<BR>
</FONT><BR>
That will only work in Entourage 2004, I believe. To have it work in either=
Entourage X or 2004, or 2001, it would have to be:<BR>
<BR>
tell app &quot;Microsoft Entourage&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set read status of (every message of folder i=
d 5 whose read status is not read) to read<BR>
End tell<BR>
<FONT COLOR=3D"#0000FF">&gt; <BR>
&gt; Save this script as a compiled script in the Entourage Script Menu Ite=
ms<BR>
&gt; folder, and you can either select it to run it manually, or create a<B=
R>
&gt; repeating schedule that runs every ten minutes or so to run this scrip=
t.<BR>
&gt; <BR>
&gt; <BR>
&gt; Note: That script is designed for Entourage 2004 - if you get an error=
in<BR>
&gt; the next to last line in Entourage x, you may need to replace that<BR>
&gt; particular line with:<BR>
</FONT><BR>
Aha. Yes, you could do it the slow way, in a repeat loop. But it's not nece=
ssary: you can do it the fast way even in X, as above.<BR>
<FONT COLOR=3D"#0000FF">&gt; <BR>
&gt; Repeat with aMessage in themessages<BR>
&gt; Set read status of amessage to read<BR>
&gt; End repeat<BR>
</FONT><BR>
<BR>
-- <BR>
Paul Berkowitz<BR>
MVP Entourage<BR>
Entourage FAQ Page: <a href=3D"http://www.entourage.mvps.org/toc.html">&lt;ht=
tp://www.entourage.mvps.org/toc.html&gt;</a><BR>
AppleScripts for Entourage: <a href=3D"http://macscripter.net/scriptbuilders/=
">&lt;http://macscripter.net/scriptbuilders/&gt;</a> <BR>
<BR>
Please &quot;Reply To Newsgroup&quot; to reply to this message. Emails will=
be ignored.<BR>
<BR>
PLEASE always state which version of Entourage you are using - **2004**, X =
&nbsp;or 2001. It's often impossible to answer your questions otherwise.<BR>
</SPAN></FONT>
</BODY>
</HTML>


--B_3167647588_9631374--