Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Minimize all windows in all apps via AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Minimize all windows in all apps via AppleScript
Authored by: ever on Mar 06, '06 08:22:42PM
I wrote a similar script that hides the windows of an application underneath the current window. It works quickly enough and doesn't hog dock space.
set front_app to path to frontmost application as Unicode text
tell application front_app
	try
		set y to the bounds of the front window
		repeat with x in windows
			set bounds of x to y
		end repeat
	end try
end tell


[ Reply to This | # ]