Minimize Mail window Applescript
I want to open Mail and minimize it after opening. I got the opening Mail part but can't get the minimize part.
Running Catalina 10.15.3
Thanks
iMac Line (2012 and Later)
Apple Intelligence is now available on iPhone, iPad, and Mac!
I want to open Mail and minimize it after opening. I got the opening Mail part but can't get the minimize part.
Running Catalina 10.15.3
Thanks
iMac Line (2012 and Later)
It may be your problem is there's an inconsistent (and changing) term used to minimize the window - it even varies by app in some cases - but try this:
tell application "Mail"
launch -- launch opens the app in the background, rather than 'activate' which brings it frontmost
set miniaturized of every window to true
end tell
It may be your problem is there's an inconsistent (and changing) term used to minimize the window - it even varies by app in some cases - but try this:
tell application "Mail"
launch -- launch opens the app in the background, rather than 'activate' which brings it frontmost
set miniaturized of every window to true
end tell
Perfect
Thanks
Minimize Mail window Applescript