Possible Duplicate:
How do I create a screen shot with emphasis

Lets say you want to take a screenshot of a form on a website but you want to highlight a particular part of the form, maybe a field of some type.

Usually you have to: 1. take a screenshot (maybe apple+shift+4) 2. open paint/photoshop and open the screenshot 3. highlight the field in a colour of some sort (red box) 4. save and then send

Is there some better workflow? I it would be great to have a application that would highlight the field and then let you capture the screenshot. Mousepose doesn't quite work cause the highlighting still follows your mouse pointer.

Any ideas?


okay just worked it out.

Just through to my self that it's probably best not to use the mouse pointer as the highlighting tool but a screen drawing one.

So I used an highlight app (free) that lest you draw squares (shift key), circles (ctl key, i think) and lines- http://mac-free.com/download/Highlight.html

Then screenshot the image: view (not enough rep points to post img yet)

done!

link|improve this question
It's not necessary to add "[solved]" to the title. Post your solution as an answer (you need to wait 24 hours after posting the question) and then accept that answer. You don't get any points but it is the way you indicate that the question is solved. – ChrisF Apr 11 '11 at 13:32
feedback

migrated from stackoverflow.com Apr 11 '11 at 9:59

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by studiohack Apr 11 '11 at 16:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

You could also:

f=`date +'%y%m%d-%H%M%S.png'`; cd ~/Desktop; screencapture -io $f && open -a 'Adobe Photoshop CS5' $f

and Bind a key to a commandline command in Mac OS X? - Super User.

At least no more opening the image editor, pasting a new document and saving (as).

link|improve this answer
feedback

Possible dupe of: this.

I would look at Skitch. It allows you to snap a screenshot via selecting a portion of the screen, or by grabbing an entire window, desktop, etc., then apply various overlays, such as highlights, arrows, wording, etc, and allows you to drag the resulting image to another app, or post it to a web server with one click (a second click will copy the resulting URL to your clipboard). I've used it heavily for a couple of years now.

Examples:

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.