(* PrintScreen.scpt tristan+as@ethereal.net 11jul2006 I have this script assigned to Cmd-Shift-5 using Butler I use this for printing directions from Google Maps at high resolution. *) do shell script "screencapture -iW ~/Documents/Capture.png" tell application "Finder" set homePath to path to home folder as text end tell -- If you actually use Safari as your browser, you won't like this: -- (why isn't Preview scriptable?) -- (also, why can't we print the clipboard directly?) tell application "Safari" activate open file (homePath & "Documents:Capture.png") delay 1 try print document 1 with print dialog end try close document 1 quit without saving end tell