Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Automator custom screenshot area

Hi, I've been trawling for ages trying to find a way to screen grab a specific area of my screen using automator without having to select the area each time manually.

Any ideas?

thanks in advance

MacBookPro unibody and 24" Alu iMac, Mac OS X (10.6.5)

Posted on Jan 19, 2011 1:43 PM

Reply
2 replies

Jan 20, 2011 12:44 AM in response to Steven Cooper1

Hi Steven, maybe you can hace Automator use a Terminal script...

Capture the screen to the clipboard:

screencapture -c

Capture a selection or window (press spacebar to switch):

screencapture -i ~/Desktop/screenshot.png

Capture a window without its shadow (press spacebar after entering the command to enable Window Selection mode):

screencapture -io ~/Desktop/screenshot.png

Capture the screen and open the image in a new Mail message:

screencapture -M ~/Desktop/screenshot.png

Capture the screen and open the image in a Preview window:

screencapture -P ~/Desktop/screenshot.png

Capture the screen and save the image in the specified format (valid values are pdf, jpg, tiff, etc.):

screencapture -t png ~/Desktop/screenshot.png

Capture the screen after the specified amount of seconds have passed:

screencapture -T 10 ~/Desktop/screenshot.png

Capture the screen without playing the camera shutter sound:

screencapture -x ~/Desktop/screenshot.png

You can see all the screencapture parameters by running:

man screencapture

Keep in mind that these parameters can be combined, so you could, for instance, take a timed screenshot without the camera shutter sound:

screencapture -T 10 -x ~/Desktop/screenshot.png

http://www.geekology.co.za/blog/2009/02/mac-os-x-quick-tip-taking-screenshots-fr om-the-command-line/

Automator custom screenshot area

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.