Macworld Forums: Disable shadows in 10.5 window screen captures - Macworld Forums

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Disable shadows in 10.5 window screen captures

#1 User is offline   Macworld Icon

  • Story Poster
  • Icon
  • Group: MW Bot
  • Posts: 12,848
  • Joined: 30-November 07

Posted 18 July 2008 - 07:15 AM

Post your comments for Disable shadows in 10.5 window screen captures here
0

#2 User is online   Photonerd Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 329
  • Joined: 31-March 05

Posted 18 July 2008 - 07:18 AM

Great tip. Please, more of this stuff, less hardware review fluff for non-Apple product, and build a separate sub-site for all things iPhone IMO. ;)
0

#3 User is offline   adobephile Icon

  • Veteran
  • PipPip
  • Group: Banned
  • Posts: 757
  • Joined: 03-February 01

Posted 18 July 2008 - 07:44 AM

Photonerd said:

Great tip. Please, more of this stuff, less hardware review fluff for non-Apple product, and build a separate sub-site for all things iPhone IMO. ;)


I don't know whether there is a sub-site for all things iPhone, but I don't want iPhone news separate from Mac news. To me, they're quite connected and not just because I'm a user of both.

To me, the iPhone is yet another outgrowth of Apple's "Digital Hub" strategy which they've been working on for many years now. iPhone coverage does not detract from nor dilute the importance of the Mac platform. It EXTENDS it and makes it more relevant to both owners and potential switchers.

The iPhone and iPod and other Apple marketing stategies are essentially Trojan Horses into the MS hegemony, and it's very gratifying to me to get news of both iPod and iPhone sales as well as the numbers of Mac switchers as probable results of these "peripheral" exposures to Apple products.
0

#4 User is offline   Chris Breen Icon

  • Advanced Member
  • Icon
  • Group: Moderators
  • Posts: 3,909
  • Joined: 11-December 00

Posted 18 July 2008 - 07:53 AM

This is a discussion better carried on in the Website Feedback area. Please, let's keep the comments here on topic.

#5 User is offline   jpmm Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 100
  • Joined: 24-November 05

Posted 18 July 2008 - 08:30 AM

Great tip. There's been a few times when I didn't want the shadow, and this is a great way to take care of that!
Thanks.
0

#6 User is offline   leicaman Icon

  • Veteran
  • PipPipPip
  • Group: Members
  • Posts: 1,687
  • Joined: 04-December 03

Posted 18 July 2008 - 09:05 AM

I've been inspired to write an Applescript based on this. I'm sure others could write cleaner scripts, but heck, I'm an amateur, so sue me!

I put it in QuicKeys and tied it to Command Option F16 and now I can do screen captures as either jpg, png or pdf with or without shadows at the press of a button. I wrote it in Script Debugger, but paste it into Script Editor (or QuicKeys) and enjoy!

Past all text below this line:

(*

Applescript written by Eric Welch © 2008 (just kidding) to automate capturing sceenshots using Terminal commands with the camera tool. Choose the extension you want to determine the format of the final capture. Do NOT type in the extension when naming the capture.

*)

set selectedButton to button returned of (display dialog ¬
"Would you like your screen capture to have a shadow?" buttons {"Shadow", "No Shadow", "Cancel"} default button "Shadow")

--you could set tiff by changing one to tiff - this dialog only allows three buttons
set fileExtension to button returned of (display dialog ¬
"What format?" buttons {"jpg", "png", "pdf"} default button "jpg")

set fileBody to the text returned of (display dialog ¬
"What would you like to name the screen capture? (Don't include extension!) ¬
of the screen capture?" default answer "capture" buttons {"OK"} default button "OK") as text

set fileName to fileBody & "." & fileExtension

if selectedButton = "Shadow" then
set captureTheScreen to "screencapture -iw " & "-t" & fileExtension & " ~/desktop/" & fileName
else
set captureTheScreen to "screencapture -iwo " & "-t" & fileExtension & " ~/desktop/" & fileName
end if

do shell script captureTheScreen

Message was edited by: leicaman
0

#7 User is offline   jpmm Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 100
  • Joined: 24-November 05

Posted 18 July 2008 - 09:08 AM

leicaman said:

I've been inspired to write an Applescript based on this. I'm sure others could write cleaner scripts, but heck, I'm an amateur, so sue me!


Thanks. I'll give that a try. Oh, by the way, I think you meant to write Sosumi. Haha, j/k.


(Sosumi, the Apple sound - for those who may read that and not understand my sick humor)
0

#8 User is offline   Sam Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 7
  • Joined: 09-November 01

Posted 18 July 2008 - 08:50 PM

I have used the great freeware "Shadowkiller" by Unsanity software for some time now, and it provides the functionality of Mr Griffiths' tip without having to access terminal:
http://www.unsanity....es/shadowkiller
Hope this helps.
Sam
0

#9 User is offline   leicaman Icon

  • Veteran
  • PipPipPip
  • Group: Members
  • Posts: 1,687
  • Joined: 04-December 03

Posted 18 July 2008 - 09:22 PM

Sosumi! Touche.
0

#10 User is offline   jpmm Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 100
  • Joined: 24-November 05

Posted 19 July 2008 - 05:57 AM

Sam said:

I have used the great freeware "Shadowkiller" by Unsanity software for some time now, and it provides the functionality of Mr Griffiths' tip without having to access terminal:

http://www.unsanity....es/shadowkiller


Sam, I should point out that the Web site says "ShadowKiller currently does not work on Mac OS X 10.5.", unless they have an update somewhere.
0

#11 User is offline   Sam Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 7
  • Joined: 09-November 01

Posted 19 July 2008 - 08:23 AM

jpmm:

I realize that the Unsanity site states "ShadowKiller" does not work on Mac OS 10.5, but I can verify that it definitely does work (at least for me) since I use it regularly. (I currently run OS 10.5.4)

Sam
0

#12 User is online   rcgordon Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 5
  • Joined: 19-July 08

Posted 19 July 2008 - 10:43 AM

I'm seeing that this feature works in Tiger (10.4.11 at least) as well.
0

#13 User is offline   DavidWolfe Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 11
  • Joined: 02-July 07

Posted 22 July 2008 - 04:28 AM

This is a great tip--one that I have been looking for ever since I began using Leopard. I, too, usually do need drop shadows present on screen captures. The problem is that, on my system, the Leopard drop shadows are enormous. In fact, the shadows on my system are probably between 10 and 20 times bigger than the one in your example screen capture. I wonder why? If I could get the size down to something reasonable, I could use the shadows that are part of the screen capture. As it is, I have to remove them and add them back in.
0

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

3 User(s) are reading this topic
0 members, 3 guests, 0 anonymous users