Re: UI Printing
Re: UI Printing
- Subject: Re: UI Printing
- From: Stan Cleveland <email@hidden>
- Date: Thu, 04 Mar 2010 17:50:23 -0800
- Thread-topic: UI Printing
Title: Re: UI Printing
On 3/4/10 5:41 PM, "Stockly, Ed" wrote:
This works for me.
--(Written using PreFab’s UI Browswer)
tell application "Mail"
activate
tell application "System Events"
click menu item "Print…" of menu 1 of menu bar item "File" of menu bar 1 of application process "Mail"
end tell
end tell
Hi Luther,
LuKreme is right about the ellipsis and Ed is right about Mail needing to be the frontmost app.
Here’s another way to get there:
tell application "System Events"
tell process "Mail"
set frontmost to true
click menu item "Print…" of menu "File" of menu bar item "File" of menu bar 1
end tell
end tell
Stan C.
_______________________________________________
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