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


Click here to return to the 'A script to resize frontmost two windows to fill screen' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A script to resize frontmost two windows to fill screen
Authored by: GlowingApple on Jan 10, '06 11:48:54AM
for a "tile vertically" script, replace the "tell application frontApp" block with this:

tell application frontApp
	set var_count to number of windows as number
	set var_left to 0 as number
	repeat with x from 1 to var_count
		set bounds of window x to {var_left, menubarHeight, var_left + (screenWidth / (var_count)), screenHeight}
		set var_left to var_left + (screenWidth / (var_count))
	end repeat
end tell

---
Jayson --When Microsoft asks you, "Where do you want to go today?" tell them "Apple."

[ Reply to This | # ]

A script to resize frontmost two windows to fill screen
Authored by: GlowingApple on Jan 10, '06 11:56:21AM

This still only works on the frontmost application though, not all open windows.

---
Jayson --When Microsoft asks you, "Where do you want to go today?" tell them "Apple."



[ Reply to This | # ]