Re: Accessing front window of Mail.app
Re: Accessing front window of Mail.app
- Subject: Re: Accessing front window of Mail.app
- From: Luther Fuller <email@hidden>
- Date: Sun, 06 Sep 2009 12:13:40 -0500
On Sep 6, 2009, at 11:42 AM, Mike Matthews wrote: I've been trying to find a way for this AppleScript (or something like it) to work:
tell application "Mail" set theContent to the content of the front window end tell
But it appears that there's no way to target the front window of Mail, including in the 10.6 version of Mail.
Message windows belong to a Viewer Window not the application. Try this ...
tell application "Mail" set frontViewer to (message viewer 1) set theMsg to message 2 of frontViewer content of theMsg end tell
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden