Reputation: 133
Right now, on Macs, when you click shift-command-4, you can select an area on the screen to take a screenshot of. The photo is then saved on your desktop.
How can I make an apple script so that it also saves the photo on my clipboard?
Upvotes: 0
Views: 1900
Reputation: 2282
Maybe the terminal tool screencapture is your friend. You can write a script like
do shell script "screencapture -ci"
and start that. The parameters used in this script are doing the following:
You can find all parameters for the screen capture tool using man screencapture
in Terminal.app, i.e. the parameter P
would open the screen shot directly in Preview.app.
Have fun, Michael / Hamburg
Upvotes: 1