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


Click here to return to the 'Minimize all Finder windows at login via AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Minimize all Finder windows at login via AppleScript
Authored by: Skeeve on Jan 02, '07 09:11:40AM
Why not simply:
tell application "Finder"
	repeat with i from 1 to count of Finder windows
		set collapsed of Finder window i to true
	end repeat
end tell


[ Reply to This | # ]