Re: Selecting messages in Outlook Express
Re: Selecting messages in Outlook Express
- Subject: Re: Selecting messages in Outlook Express
- From: John Delacour <email@hidden>
- Date: Thu, 6 Mar 2003 01:28:51 +0000
- Mac-eudora-version: 6.0a9
At 3:42 pm -0800 5/3/03, Christian Boyce wrote:
tell application "Outlook Express"
set themessagelist to (every message whose recipient contains
"email@hidden") in folder "Sent Items"
end tell
If you consider that in order to get the address you need to write all this
tell application "Microsoft Entourage" -- read OE
set ls to messages in folder "inbox"
get display name of address of item 1 of recipients of item 1 of ls
--> "New Microsoft Entourage User "
end tell
then it's not surprising you re having trouble, because you've got to
twist all that round into a whose clause.
Paul Berkowitz is your man. He loves this new-age Dan Crevier stuff :-)
Here's the sort of thing you'll be up against:
get every item in (get messages in folder "inbox") where the display
name of the address of its first item is "New Microsoft Entourage
User "
You can tell how often I've used Entourage :-)
JD
_______________________________________________
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.