Re: Newbie Help
Re: Newbie Help
- Subject: Re: Newbie Help
- From: Paul Berkowitz <email@hidden>
- Date: Fri, 21 Mar 2003 16:41:09 -0800
On 3/21/03 12:29 PM, "Mr Tea" <email@hidden> wrote:
>
>
> Is there anyway to tell entourage to highlight/select the first message or
>
> even better the new message in the inbox.
>
>
The following line (wrapped in an Entourage 'tell' block) will get you a
>
list of the unread messages in the inbox...
>
>
get (messages whose read status is untouched) of the inbox folder returning
>
newmail
in box
needs to be two words. And the parentheses are in the wrong place but
AppleScript will probably forgive you:
tell application "Microsoft Entourage"
set newmail to (every message of the in box folder whose read status
is untouched)
end tell
[or no parentheses at all].
>
>
...Then you can loop through the list checking the messages to see if they
>
need to be printed (or whatever).
--
Paul Berkowitz
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.