Strange Screen Capture Problem

Ok, I'm stumped and hope someone can help me out.
For some reason, on my macbook pro, I can't get the screen capture cmd-shift-4-space to work. All the other screen capture modes work (eg. cmd-shift-3 and cmd-shift-4).
When I hit the cmd-shift-4 command and then hit the space bar, I see the camera show up, but it will not select individual windows. Instead the whole screen is highlighted and when I click, it takes a blank white picture. How do I fix this? Thanks.

Have you tried booting in Safe Mode? Hold down the Shift key as soon as you hear the startup chime. The boot will take longer, as the system repairs the drive, clears some caches, and disables all third party startup items (and some Apple ones as well). Try it in Safe Mode, then reboot normally and try it again. If it works in Safe Mode, but not when you reboot, then there is a conflict with some startup item.
Francine
Francine
Schwieder

Similar Messages

  • Robot screen capture problem on Mac os 10

    Dear all,
    I perform a screen capture with jframe size.The background capture is ok but i have a line border around the rectangle determined by the capture and a shadow in capture background..
    How to remove the line border of capture, and suppress the shadow on mac ....
    Thanks in advance for all helps..
    package nomadsland.splashWindow;
    import java.awt.AWTException;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.Robot;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.awt.image.ConvolveOp;
    import java.awt.image.Kernel;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JWindow;
    import javax.swing.Timer;
    public class ShadowedWindow extends JWindow {
        private BufferedImage splash = null;
        public ShadowedWindow(BufferedImage image) {
            createShadowPicture(image);
        public void paint(Graphics g) {
            if (splash != null) {
                g.drawImage(splash, 0, 0, null);
        private void createShadowPicture(BufferedImage image) {
            int width = image.getWidth();
            int height = image.getHeight();
            int extra = 14;
            setSize(new Dimension(width + extra, height + extra));
            setLocationRelativeTo(null);
            Rectangle windowRect = getBounds();
            splash = new BufferedImage(width + extra, height + extra, BufferedImage.TYPE_INT_ARGB);
            Graphics2D g2 = (Graphics2D) splash.getGraphics();
            try {
                Robot robot = new Robot(getGraphicsConfiguration().getDevice());
                BufferedImage capture = robot.createScreenCapture(new Rectangle(windowRect.x, windowRect.y, windowRect.width + extra, windowRect.height + extra));
                g2.drawImage(capture, null, 0, 0);
            } catch (AWTException e) { }
            BufferedImage shadow = new BufferedImage(width + extra, height + extra, BufferedImage.TYPE_INT_ARGB);
            Graphics g = shadow.getGraphics();
            g.setColor(new Color(0.0f, 0.0f, 0.0f, 0.3f));
            g.fillRoundRect(6, 6, width, height, 12, 12);
            g2.drawImage(shadow, getBlurOp(7), 0, 0);
            g2.drawImage(image, 0, 0, this);
        private ConvolveOp getBlurOp(int size) {
            float[] data = new float[size * size];
            float value = 1 / (float) (size * size);
            for (int i = 0; i < data.length; i++) {
                data[i] = value;
            return new ConvolveOp(new Kernel(size, size, data));
        public static void main(String[] args) {
            try {
                 BufferedImage image = ImageIO.read(ShadowedWindow.class.getResourceAsStream("loginPanelGeneric.png"));
                ShadowedWindow window = new ShadowedWindow(image);
                window.setVisible(true);
                Timer timer = new Timer(5000, new ActionListener() {
                    public void actionPerformed(ActionEvent evt) {
                        System.exit(0);
                timer.start();
            } catch (IOException e) {
                e.printStackTrace();
    }Thanks you in advance for any help...

    Dear all,
    I perform a screen capture with jframe size.The background capture is ok but i have a line border around the rectangle determined by the capture and a shadow in capture background..
    How to remove the line border of capture, and suppress the shadow on mac ....
    Thanks in advance for all helps..
    package nomadsland.splashWindow;
    import java.awt.AWTException;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.Robot;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.awt.image.ConvolveOp;
    import java.awt.image.Kernel;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JWindow;
    import javax.swing.Timer;
    public class ShadowedWindow extends JWindow {
        private BufferedImage splash = null;
        public ShadowedWindow(BufferedImage image) {
            createShadowPicture(image);
        public void paint(Graphics g) {
            if (splash != null) {
                g.drawImage(splash, 0, 0, null);
        private void createShadowPicture(BufferedImage image) {
            int width = image.getWidth();
            int height = image.getHeight();
            int extra = 14;
            setSize(new Dimension(width + extra, height + extra));
            setLocationRelativeTo(null);
            Rectangle windowRect = getBounds();
            splash = new BufferedImage(width + extra, height + extra, BufferedImage.TYPE_INT_ARGB);
            Graphics2D g2 = (Graphics2D) splash.getGraphics();
            try {
                Robot robot = new Robot(getGraphicsConfiguration().getDevice());
                BufferedImage capture = robot.createScreenCapture(new Rectangle(windowRect.x, windowRect.y, windowRect.width + extra, windowRect.height + extra));
                g2.drawImage(capture, null, 0, 0);
            } catch (AWTException e) { }
            BufferedImage shadow = new BufferedImage(width + extra, height + extra, BufferedImage.TYPE_INT_ARGB);
            Graphics g = shadow.getGraphics();
            g.setColor(new Color(0.0f, 0.0f, 0.0f, 0.3f));
            g.fillRoundRect(6, 6, width, height, 12, 12);
            g2.drawImage(shadow, getBlurOp(7), 0, 0);
            g2.drawImage(image, 0, 0, this);
        private ConvolveOp getBlurOp(int size) {
            float[] data = new float[size * size];
            float value = 1 / (float) (size * size);
            for (int i = 0; i < data.length; i++) {
                data[i] = value;
            return new ConvolveOp(new Kernel(size, size, data));
        public static void main(String[] args) {
            try {
                 BufferedImage image = ImageIO.read(ShadowedWindow.class.getResourceAsStream("loginPanelGeneric.png"));
                ShadowedWindow window = new ShadowedWindow(image);
                window.setVisible(true);
                Timer timer = new Timer(5000, new ActionListener() {
                    public void actionPerformed(ActionEvent evt) {
                        System.exit(0);
                timer.start();
            } catch (IOException e) {
                e.printStackTrace();
    }Thanks you in advance for any help...

  • Screen capture problem

    When I do a screen capture with command-shift-4 the resulting image is broken. That is it looks like the image is chopped up in vertical strips and displaced. Below is an example with what it should look like (the latter using Snapz Pro).

    Having trouble including images!!

  • Screen capture : problems with audio quality & volume

    Hi all ,
    I'm quite new with Arch (I installed it 1 week ago) but I'm a quite veteran debian user (since 10 years)...
    I'd like to produce screencast for my students , so I 've made some tests with xvidcap & recordmydesktop, they were fine
    I 've decided to add sound to these first demos and that 's here that difficulties come...
    My laptop is a Sony VAIO VPC Z1 (quad core i7 , 8Gb of RAM , 500 gb harddisk, with an hybrid graphics card i915/Nvidia M 330)
    Soundcard is well detected :
    \ └─(\ 1:\ 10:03\ :%)─\ ─\  lspci|grep -i audio                                                            ──\ (lun.,nov.29)─┘
    00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
    01:00.1 Audio device: nVidia Corporation High Definition Audio Controller (rev a1)
    they are seen in the cards file:
    \ └─(\ \ 10:10\ :%)─\ ─\  cat /proc/asound/cards                                                           ──\ (lun.,nov.29)─┘
    0 [Intel          ]: HDA-Intel - HDA Intel
                          HDA Intel at 0xd7820000 irq 45
    1 [NVidia         ]: HDA-Intel - HDA NVidia
                          HDA NVidia at 0xd1000000 irq 16
    My problems are :
    - it seems that my alsamixer are lost each time (preferences for each channel)
    - I don't know what channel to use while recording because I've got :
    record
    record1
    record2
    digital
    micro
    micro boost
    ouch...
    I 've tried to make some sound  capture with a Plantronics (earphones + micro ) using my front connectors (2 jack )
    Results are very confusing:
    - with audacity , sound is quite good
    - with recordmydesktop, noise leveel is very high, I can't figure out how to filter the signal
    - with xvidcap ,the man page is not very informative for options to capture sound
    So your feedbacks are welcome...
    It's my first attempt to do multimedia with Linux (I use it for programming Java/C++ and for documents editing in LateX)
    Thanks
    jerome

    It does appear to be a bit tricky to get the Mac to always recognize this key combination. Especially if Space has another function related to that window, such as Quick View over a Finder window. I could not get consistent results when using the key combo, sometimes it worked first time, many times nothing.
    But there is another way to get screen shots. There is the Apple Utility Grab in the Utilities folder (Apps/Utilities). It will help you with all the screen shots the key combos take.
    Dah•veed

  • Screen Capture Problems

    I got this question from a client and can't find any answer. Is there a way to fix this short of reinstalling the operating system?
    Just a brief question of you regarding the screen shot - command-shift-4. When I do this I now get an alert sound without any picture being taken. If I do a command-C from the keyboard, I get the resulting "bullseye" that should accompany the command-shift-4 routine and I can highlight an area and a picture will result. If I highlight something then go to the EDIT-COPY. that behaves in the normal way in that I can paste the 'copied' where ever I want. I have run the disk utility and repaired permissions.
    iMac G5 20"   Mac OS X (10.4.7)   Apple wireless keyboard & mouse, Apple Mighty Mouse, External LaCie HD 500 GB,

    Command-Shift-4 lets you select the part of the screen (using the mouse) to take a snapshot of. I use it all the time and it works great. After selecting cmd-shft-4 you need to sweep out an area with the mouse. The area is highlited in grey and a .png file is created.
    Command-Shift-3 takes a snapshot of the entire screen.

  • I have a 17" Macbook pro with flickering red and cyan(blue) lines across the screen. The issue disappears temporarily when I tap on the computer, and the problem does not occur when I use external display or try to screen capture the problem.

    I purchased my Macbook (17") through a certified apple tecnition in August 2012, it was refurbished and the motherboard was completely replaced. I do a lot of photo editing, but I have been unable to do so because of the red vibrating lines that interrupt my screen. The issue disappears temporarily when I tap on the computer, and the problem does not occur when I use external display or try to screen capture the problem. I brought the computer back to the technition I purchased it from and he said that it was a problem with my fan, so I have two new fans but the issue is still occuring. He says he doesnt know whats wrong. Does anyone have any information on this issue?
    Here is an image of the issue
    http://www.flickr.com/photos/67839707@N08/8884847081/

    I recommend having your Mac serviced by someone competent. A force sufficient to "blow apart" the fans was clearly excessive and may have damaged the display cable, as well as any number of other problems.
    Dust is properly cleaned with a vacuum, preferably one designed for computer service, and they are not cheap.
    Compressed air should never be used. It just blows dust everywhere, often into places where it can no longer be removed.

  • Fuzzy screen capture, very strange

    Hi there,
    I'm using a G5 with tiger, and have recently started to notice a very odd problem. Whenever I use screen capture (shiftcmd4 to capture a part of the screen), the resulting image is slightly blurry and indistinct. The even weirder thing is that not the whole image is affected, just most of it, and the distortion is not uniform across the whole capture area. Also, the areas affected do not seem to be the same each time.
    It's quite a slight effect, but noticeable, and very annoying. Plus, it's only started happening today or very recently. If anyone has any idea what is going on I would greatly appreciate the help!
    Cheers

    well, that does help... a little... here goes...
    delete the 'com.apple.universalaccess.plist' file and log out and in or restart.
    yourhome/Library/Preferences/ com.apple.universalaccess.plist (you knew the path)
    then test a screenshot.
    if still no joy try the following (the way i do it) ...
    shutdown - startup and hold down commandoption+PR for 3 chimes (pram zap - you knew that too).
    as soon as you hear the third chime, switch your two fingers from the P+R keys to O+F (while command+option are down).
    release the keys when the Open Firmware screen appears.
    type..
    set-defaults
    press return and type...
    reset-nvram
    press return and type...
    reset-all
    press return.
    when you get to the desktop go to the System Preferences>Startup Disk pane and select your disk.
    test another screenshot.
    Tom

  • Screen shot capture problems

    I have a Mac Pro, and when attempting to take a screen shot using "Shift-Command-4," the content that I want is only captured sporadically. I've manipulated the image size, etc., to see if this was the problem, but there does not seem to be a consistent basis for the problem. I've also searched my computer via Spotlight to see if the PNG file was being saved to a place other than my desktop, but it is not.
    Any suggestions?

    I have encountered the same issue. Lately when using the tried and true screen capture keystrokes (shift-command-3 or shift-command-4) I sometimes get an image file, and sometimes I don't. But I always get the camera click sound.
    When searching for the answer to this problem I'm directed to the Grab utility. This app may have some nice features, but it is not as convenient as the standby keystrokes and is a step backwards if this is going to be the norm.
    Anybody know why this happening?

  • Stratosphere- Problem with Screen Capture and Group Text Reply

    I have a problem with the side button that locks/unlocks the phone.  I don't know why it happens but sometimes when I press the side button to lock the phone it takes a screen shot and send its to my Gallery under the folder ScreenCapture.  I can't figure out why it does this sometimes, and when i want to actually take a screen shot I cant. 
    Anyone know how exactly you can take a screen shot?
    Another question i have is with Group Texts.  Is there a way to reply all when I receive a text that was sent to multiple people or can I only reply to the sender?
    Hope someone can help thanks!

        Hello kfeatherstone! I can provide you with instructions for taking a screenshot:
    1. Press both the Power and Home buttons briefly.
    2. You should hear a “click” sound and the screen will say “Screen captured. Saved as image file
    In regards to your messaging, "reply to all" is not an available option. I hope this information helps!
    ChaunceyM_VZWSupport
    Follow us on twitter @VZWSupport

  • Problem recording sound during screen capture

    Hi
    I'm having a problem when recording screen captures in Windows XP SP3 in Boot Camp.
    There is almost no sound. There is a very low sound level being picked up from the microphone.
    The screen capture software I'm using is Capture Solution by SProsoft. I get the same result when using Windows Media Encoder, so I don't think it is a problem with the capturing program.
    There is no problem with Windows XP making the sounds as I use it. It is just that I cannot record those sounds.
    Thank you for any assistance you can give.

    Hi ya I solved it..... I brought it back to the shop I got my phone in and they gave me a brand new one.
    I had it for 11 months when I returned it  and it was still covered by warranty hope this helps :)

  • Screen Capture Timing Problem

    I did a screen capture using Captivate and when I bring it over to my editing program to synch with the speakers video, the total running time of the screen capture is off by a considerable margin.  The video (which was started and stopped almost simultaneously with the screen capture) is much longer than the screen capture.
    I'm afraid that, in the screen capture something was checked to not record real time.  Is that an option?  Thanks in advance!!!
    I'm running Captivate 4.

    Hi there
    Indeed there is such an option. You find it by clicking Edit > Preferences > Recording > Settings > Actions in real time.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Problem Recording - screen capture isn't capturing correct window

    Hi,
    I'm working in Captivatre 7 on a Mac, and I'm trying to add a recording slide to do a tutorial in Photoshop. When I do the screen capture, and then finish, it takes me back to Captivate, and all the slides have the background of my captivate template instead of the Photoshop window. This hasn't happened to me before, and all the settings look the same - I've used screen capture in Captivate 5 & 6, but not 7 yet. When I went to try the screen capture in Captivate 6 also, it's doing the same thing. Some of the motions (but not all) are being captured correctly - the text captions are referencing the motions related to Photoshop. Here are some photos below - the orange background is my Captivate background template, and I've added some photos of my settings. Any help is appreciated!

    Be sure you have a blank (child) master slide and assign that one to the slides. If the objects you are seeing now sit on the main master slide, you can still create a blank child master slide for which you uncheck the options 'Show Main Master Slide Objects' adn 'Use Master Slide Background' in the Properties panel of that child master slide.
    If you want to have the captured slides fitting in the central rectangular space, you'll need another approach: knockout master slide:
    http://blog.lilybiri.com/create-and-use-a-knockout-master-slide
    Lilybiri

  • Screen captures become corrupt as attachment in Mail

    I have created a screen capture (with shiftapple4) which creates an PNG image on my desktop. Then I create a new email message and attaches the screen capture (not using the Windows compatible attachment mode) and sends it.
    When doing like this the the attached image becomes corrupt. Regardless if I send it to myself (on my mac) or to a windows user using Thunderbird or Pine. I can't open the file and when I try to save the attachment to disk the file becomes empty (file size is 0 bytes). Pine gives a little more feedback and complains about errors in the Base64 encoding.
    The thing is, that if I first open the PNG file in the Preview tool and saves it to a new PNG file (save as...) it all works! It also works if I simply copies the file to another computer (linux) and back (using scp). I have no problem of sending any other attachments than the screen captures. I think this is very strange!
    Anyone have a clue what the error is?
    MacBook Pro 15" 2 GHz Intel Core Duo   Mac OS X (10.4.7)   2 GB DDR2 SDRAM

    http://www.sap-img.com/abap/sending-email-with-attachment.htm

  • Strange screen behaviour on new imac

    Have had the new imac for a couple of weeks now and all of a sudden the display has started behaving very strangely. Intermittently it is distorting - jagged lines and graphics screwed. Screen capture is linked here:
    http://www.malw.co.uk/photos/screencap.jpg
    Hope someone can help! Thanks.

    I was hoping I wouldn't have to do that. I've been on the phone for two hours to Applecare who have tried reinstalling OSX (archive mode?), PRAM reset etc. The computer is fine though in safe mode, which leads me to believe the problem might be software based? Their solution now is a complete reinstall so basically I have to spend not only time reinstalling but getting everything back in order - I have an 80gb itunes library and 20gb of photos for starters, plus a load of software I've installed. Anyway, before I have to take that rather drastic route, hopefully someone might come up with something I haven't tried yet.

  • Error Message When Importing Quicktime Screen Capture to FCE

    As I said in the subject I'm having issues importing a Quicktime Screen Capture into Final Cut Express. I keep getting this message.
    File Error: 1 file(s) recognized, 0 access denied, 1 unknown
    I figure it has to be a quick fix for this simple problem. And it's probably just my first time.
    Thanking you in advance
    Neo
    Message was edited by: Neo Dot Com

    QuickTime Screen Recordings are H.264 video files. You need to convert this to +QuickTime Apple Intermediate Codec+ in order to use it in FCE. MPEG Streamclip (free) can do this for you.

Maybe you are looking for

  • Issues in persisting dynamic entity and view objects using MDS

    Hi All, I'm trying to create dynamic entity and view objects per user session and to persist these objects throughout the session, I'm trying to use MDS configurations(either file or Database) in adf-config.xml. I'm facing following two errors while

  • How to link Interactive fields in acrobat 9Pro

    Hi Im new in this and I would like to now how to link interactive fields in acrobat. lets say that I have 10 files (File1, File2, File3 etc......) and each file have the same  COMBO BOX that display 5 options (option 1. option 2, option 3, option 4 a

  • Hue/saturation eyedropper not available

    The eyedropper tool in the Hue/Saturation adjustment window (Photoshop CC) is grayed out and unavailable. What do I need to do to activate it? Thanks!

  • Servlets: Scrolling a html page

    I have a servlet that generates a page with edit buttons, rows, columns etc. When the edit button is pressed it allows the current row to be edited (hence the name edit button ;). The problem is, when I press a button way down on the bottom of the pa

  • Error in BPC Administration

    Dear Experts, I Newly Installed SAP BPC 5.1 with SQL Server 2005. When iam trying to open BPC Administration its showing a error message "A dimension information file cannot be created. There may be a network or Security issue.Error Message: Empty Zi