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


Click here to return to the 'Capture windows which are larger than the screen' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Capture windows which are larger than the screen
Authored by: Gnarlodious on Jul 05, '06 07:46:17PM
Great hint, I did not know about the camera icon. I was able to take a picture of a very tall Finder window by moving it under the menubar with this Applescript, which I wrote for hiding windows:

tell application "Finder"
	set frontWindow to the front window
	set {x, y} to position of frontWindow
	set position of frontWindow to {x, 40}
end tell

Once the window is barely under the menubar, you can grab the edge and move it up as far as you want. I also wish Apple would activate this capability which was a very cool feature in OS9. As far as I know, this trick only works on Finder windows, since most apps do not allow window grabbing on the edge. Theoretically an Applescript could resize any scriptable window to an unreasonably long length to allow a fully sized screenshot.

[ Reply to This | # ]

Capture windows which are larger than the screen
Authored by: Gnarlodious on Jul 05, '06 08:05:00PM
I was able to take a full size screenshot of this very page in iCab by extending the window with a modified version of the Applescript below.

To see the resulting image look here: iCabLongWindow.png (1.8MB)

So yes, probably an Applescript could semi-automate the procedure.

[ Reply to This | # ]

Capture windows which are larger than the screen
Authored by: ever on Jul 06, '06 01:36:49AM

I can only get it to work in carbon apps.



[ Reply to This | # ]