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


Click here to return to the 'A script to resize windows to their vertical maximum' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A script to resize windows to their vertical maximum
Authored by: qwerty denzel on May 09, '05 07:34:13AM
Just download Apple's sample Safari applescripts here.
Included is this:

tell application "Safari"
	repeat with i from 1 to the count of documents
		do JavaScript "moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight)" in document i
	end repeat
end tell


[ Reply to This | # ]