Re: <no subject>
Re: <no subject>
- Subject: Re: <no subject>
- From: Paul Berkowitz <email@hidden>
- Date: Thu, 21 Aug 2003 17:14:40 -0700
On 8/21/03 4:24 PM, "John Delacour" <email@hidden> wrote:
>
At 10:21 am -0500 21/8/03, Courtney Moore wrote:
>
> Good Morning all you AS gurus!
>
>
>
> Is it possible to use Apple Script to show all headers of an email in
>
> Entourage using Applescript 1.9 OS 10.2.6?
>
>
>
Nobody seems to have answered your question. This works with Outlook
>
Express running in Classic, so I imagine it will with Entourage:
>
>
>
tell app "System Events" to tell process "Entourage"
>
set frontmost to true
>
keystroke "h" using {command down, shift down}
>
end
Actually, I answered the question, a few minutes after it was asked. (There
are not many filters that will find a thread with no subject, but you can
look back to about 8 hours ago, using my name or address as sender filter.)
To repeat:
tell app "Microsoft Entourage"
headers of item 1 of (get current messages)
end tell
1.) 'headers' is also in the OE dictionary: why are you recommending GUI
scripting instead of proper scripting?
2.) You didn't mention that he'd have to download and install a beta
version of System Events, plus do some setting up in System preferences, to
get your method to work.
3.) The app and the process are called "Microsoft Entourage" and won't
respond to "Entourage" even though that's how it's listed in some places
such as Force Quit window.
--
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.