How to capture screen and consult captures

Just wondering how to capture my desktop as a snapshot, and where do I find it after ?

command+shift+3 to take a shot of the whole desktop, command+shift+4 to take a shot of a selected portion.  It saves to the desktop by default.

Similar Messages

  • Capture Screen and Stream

    I can't figure out how to get started creating a Flash swf
    that will capture screen shots of say 20 computers that log into a
    Flash Media Server application that sends the picture of what the
    students are doing every so often.
    Any help to get into the right direction would be
    great.

    Unfortunately the presentation is a live software demo. We may actually do a little Keynote to start things off, then switch to Revit running in Windows running in Parallels, and vary things based on questions and comments from the audience. Very dynamic, and getting it all is the only viable option.
    As for the aggregate device, I think that would miss the point of being able to mute the room track the vast majority of the time, the presenter track at times, and sometimes both. I think I will need to do the room direct to GB, while the presenter is recorded via iShowU.
    I know, probably pushing everything further than it can really go, but I want to at least try. Not even an option if I was presenting in Windows on hardware!
    Thanks,
    Gordon

  • How to stream audio and video captured from mic and webcam in sync.

    I am working on a video chat project. I need to capture audio and video from mic and webcam and create rtp stream for them. How can I proceed for this. Any source code help will be highly appreciated. Otherwise just guide me how to do this and point to any good resource which is directly related to my need.
    Thanx.

    t.b.m
    As mentioned by you, i am doing exactly like that . I have coded transmitter class. But at the receiver side it is unable to play the stream. I am posting my code . Can you please help with me with any mistake i m making in my code ?? Or with way I should receive stream at receiver side. Plz see my code. I am streaming to ip address 172.31.80.67.
    package heyram;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.InetAddress;
    import java.awt.*;
    import java.io.*;
    import java.net.InetAddress;
    import javax.media.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.*;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.rtp.*;
    import javax.media.rtp.rtcp.*;
    import com.sun.media.rtp.*;
    import java.lang.Thread.*;
    public class HEYRAM{
    Format[] format=new Format[2];
    Vector[] devices=new Vector[2];
    CaptureDeviceInfo[] di=new CaptureDeviceInfo[2];
       SessionManager rtpsm = new com.sun.media.rtp.RTPSessionMgr();
    Processor p=null;
    Processor p1=null;
    boolean result;
    public HEYRAM(String address,int port,int ttl){
        try{
                InetAddress destaddr = InetAddress.getByName(address);
                SessionAddress sessaddr = new SessionAddress(destaddr,
                                                             port,
                                                             destaddr,
                                                             port + 1);
                String cname = rtpsm.generateCNAME();
                    String username = null;
                try {
                username = System.getProperty("user.name");
            } catch (SecurityException e){
                username = "jmf-user";
            // create our local Session Address
            SessionAddress localaddr = new SessionAddress();
                SourceDescription[] userdesclist= new SourceDescription[]
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_EMAIL,
                                          "[email protected]",
                                                                     1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_CNAME,
                                          cname,
                                          1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_TOOL,
                                          "JMF RTP Player v2.0",
                                          1,
                                          false)
                rtpsm.initSession(localaddr,
                                userdesclist,
                                0.05,
                                0.25);
                rtpsm.startSession(sessaddr,ttl,null);
            } catch (Exception e) {
                System.err.println(e.getMessage());
                //return null;
        // rtpsm.initSession(localAddress, defaultUserDesc, rtcp_bw_fraction, rtcp_sender_bw_fraction);
            // rtpsm.startSession(...);
    public void createVideoSession()
        format[1] = new VideoFormat(VideoFormat.YUV);
        devices[1]= CaptureDeviceManager.getDeviceList( format[1]);
         di[1]= null;
            if (devices[1].size() > 0) {
                 di[1] = (CaptureDeviceInfo)devices[1].elementAt(0);
                  System.out.println(di[1].toString());
            else {
                // exit if we could not find the relevant capture device.
             System.out.println("1234jjfjsajfjasf1");
                System.exit(-1);
            // Create a processor for this capture device & exit if we
            // cannot create it
            try {
                p1 = Manager.createProcessor(di[1].getLocator());
            } catch (IOException e) {
                System.out.println("1234jjfjsajfjasf2");
                System.exit(-1);
            } catch (NoProcessorException e) {
                System.out.println("1234jjfjsajfjasf3");
                System.exit(-1);
            // at this point, we have succesfully created the processor.
            // Realize it and block until it is configured.
           // p1.configure();
         result = waitForState(p1, Processor.Configured);
         if (result == false)
         System.out.println("Couldn't realize processor");
            p1.setContentDescriptor(new ContentDescriptor( ContentDescriptor.RAW_RTP));
            // block until it has been configured
            TrackControl track[] = p1.getTrackControls();
            boolean encodingOk = false;
            // Go through the tracks and try to program one of them to
            // output ULAW_RTP data.
            for (int i = 0; i < track.length; i++) {
                if (!encodingOk && track[i] instanceof FormatControl) {
                    if (((FormatControl)track).
    setFormat( new VideoFormat(VideoFormat.YUV)) == null) {
    track[i].setEnabled(false);
    else {
    encodingOk = true;
    else {
    // we could not set this track to gsm, so disable it
    track[i].setEnabled(false);
    // Realize it and block until it is realized.
    p1.realize();
    result = waitForState(p1, Processor.Realized);
         if (result == false)
         System.out.println("Couldn't realize processor");
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    DataSource ds = null;
    try {
    ds = p1.getDataOutput();
    } catch (NotRealizedError e){
    //System.exit(-1);
    System.out.println("1234jjfjsajfjasf4");
    // Create a SessionManager and hand over the
    // datasource for SendStream creation.
    // The session manager then needs to be initialized and started:
    // rtpsm.initSession(...);
    // rtpsm.startSession(...);
    try {
    (rtpsm.createSendStream(ds, 0)).start();
    } catch (IOException e){
    System.out.println("1234jjfjsajfjasf6");
    e.printStackTrace();
    } catch( UnsupportedFormatException e) {
    System.out.println("1234jjfjsajfjasf7");
    e.printStackTrace();
    public void createAudioSession(){
    format[0] = new AudioFormat("linear",8000,8,1);
    devices[0]= CaptureDeviceManager.getDeviceList( format[0]);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • HOW CAN I CAPTURE SCREEN AND SOUND WHILE WORKING IN AUDITION

    Hi!  I would like capture the screen in real time as well as the sound while working in audition and later add voice and annotations .
          I tried Adobe Acitvate but it is not working. Time is running out for my trial version and I need to decide to get the right software.
          Hope to get an answer soon.
    David

    Are you talking about having used Adobe Captivate? If yes, which kind of recording did you start? And; since you talk about a trial version, I suppose you use Captivate 7?

  • Capturing Screen and save it as JPG

    I'm making an exe with flash that will go on CD and what I
    need is to capture the screen so the user can save the image and
    send it by email. I've seen that you can capture an image using php
    but my project will go on CD. Is it possible or I should explain
    the user how to printScreen on Windows...
    Thanks!
    Marta

    If you just want to capture what is on the entire Flash stage
    then you can use the Bitmap class in Flash 8. If you are trying to
    capture items outside of Flash then the answer is no, unless you
    find a third-party tool to use.
    Tim

  • Capture screen and rendering

    Hi
    I use windows 8.1 64 bit  with two monitor and work mainly on the NEC EA224WMI
    I capture pixelwindows windows ( meaurement screen tool) configure to measure an area of 336x74 . when i capture the windows desktop that contain Pixelwindow and select pixelWindows to measure it in photoshop,
    photoshop show me 420x93pixel .
    Is there a way to configure photoshop for have in W 336 and H 74 instead of those values ?
    i know there is browser tool to detect pixel width  and  they return for my display aspect ratio1.78  on 1536x864x24
    Does those tools  can be use instead desktop tool that compute software /  hardware  relative to width pixel  ?
    regard's

    Hi
    i find the answer by myself. A tutorial locate at  http://www.photoshopessentials.com/essentials/print-size/ give me the answer .
    ""Yet one zoom option under the View menu
    has remained a mystery to most Photoshop
    users over the years – Print Size."""
    Yes the View -> print Size  let user has the pixel  value width like it was done on the screen !!!
    regard's

  • Re: capture screen and save  to any format.

    check out
    http://java.sun.com/products/java-media/jmf/2.1.1/solutions/ScreenGrabber.html

    Try the JMF Solution, Transcode.java
    java Transcode -o capture.avi -v RGB -e 10 vfw://0
    Geo

  • Adobe Capture Raw and Nikon Capture NX

    I've just bought a Nikon D80 (lucky me but now broke) and have been playing around with RAW files. I can see great advantages in shooting in this format.
    I have PSE 4 on a Mac and it seems to me, from looking at tutorials on the web, that all the features of the RAW plug-in are not available in PSE. I know about the lack of support for Sidecar files but there isn't any colour space support either so far as I can see and there are fewer tabs in the window. Is this correct or am I missing something? I'm not overly bothered but it would be good to know.
    Nikon offer a free trial of their Capture NX application. I'm reluctant to try this given the plug-in clashes which arose from installing Nikon's rather poor Picture Project FROM the CD which came with the camera (I've now deleted it). Would Capture NX offer me anything significant beyond what I can do with ACR?

    On some photography forums I read that after you manipulate a NEF (RAW) file using Nikon Capture NX the file is no longer recognizable by Adobe RAW.
    I also have a new Nikon D80 and like some of the features of Capture NX but usually use Adobe Photoshop Elements (4.0 & 5.0) to organize and do simple edits. Therefore, my current plan is to only use Capture NX to work on key NEF photos and then save as JPEG for PSE 5.0 to handle.
    Too bad there wasn't one standard for NEF file edits.

  • How to adjust sample rate in "capture preset"?

    I'm having to recapture footage shot some years ago on my old Sony VX1000 using my Sony Z5U. I'm working on FCE 4.0 (OS 10.4), Easy Setup at DV-NTSC and capturing by "capture now." I'm getting a warning saying that my sample rate of capture does not match sample rate of source tape and advises me to ensure that my audio sample rate of the "capture preset" matches the sample rate of [my] source tape. Browser tells me that my sequence and my clips audio rate are both at 48 KHz, but my sequence audio format is 32 bit floating point, and my clips are at 16 bit integer. How do I access capture preset and synch capture rate?
    Thanks

    48KHz = 16bit
    32KHz = 12bit
    Can't be both at the same time.
    Most cameras come set to 12bit as the factory default. On the Canon miniDV cams like your ZR500, go into the menus for *Camera Setup > Audio Setup > Audio Mode* and you should be able to toggle between 16 bit and 12 bit audio.
    You want to film your videos using 16bit audio if at all possible. If you have done so, then you should use the DV-NTSC easy setup in Final Cut Express (not the DV-NTSC 32KHz easy setup).
    If you inadvertently filmed your video using 12-bit audio then you will need to use the DV-NTSC 32KHz easy setup in FCE.

  • Premiere CS4 hangs at capture screen

    I recently loaded CS4 on a Windows 7 64bit computer. I only have 2 prodjects loaded. When I open the first project, it hangs on a blank (White) capture screen. It won't let me do anything but close out. It doesn't matter if the capture device in connected or not. I can open the 2nd project by activating the capture device first and allowing it to open Premiere. The first program won't open this way either. I thought it may be something else on the the computer interferring but there's not much more on this computer. Another odd quirk but this one won't let me do anything with my project. Any ideas?
    Thanks
    Art

    I did update SonicFire Pro 5.0 to 5.5 just after I installed CS4. It is a new computer build, Windows 7 64bit 12 gig ram HD7850 videocard.
    When CS4 starts it goes to the open screen. I click on the project and Premiere opens but hangs on the capture screen but it's blank.(no controlls)  This happens before I do anything else. I can't minimize or close without going into the task Mgr. I can't open from the file on the harddrive, Bridge etc. When I connect my capture device and turn it on, autoplay gives me the option to open in CS4. SOMETIMES I can open one of my projects. (I only have 2) sometimes I can't.  Frustrating! When it does open, it works fine. The first project that has the band will open to CS4 but hangs on the capture screen. When no capture device is connected, the band project will open to CS4 and STILL hang at the capture screen with no capture device connected.

  • How to capture screen display and save it

    Hello everyone,
    I would like to capture what is being displayed on the screen and save it to a file or send it via http to someone else. I used to have this code but I lost it.
    Your help would be highly appreciated.
    Thanks
    Ulises

    Thanks for the reply. There is sample code somewhere
    to look for.Is that a question?
    /Kaj

  • Need to have pop up window in selection screen and capture the user action.

    Hello Friends,
                         I have a requirement, that need to show a pop up window after execution, and to get the action from user using a Push button.
    I create a selection screen and a sub screen as window.
    After user execute from the selection screen, I am popping up this window.
    Window contains some input values to be entered and push button to identify the user action.
    I try to capture the user action using sy-ucomm, but it does not hold any value when user press the button.
    How to overcome this issue.
    Here is the definition of the window.
    Pop Up Window for getting values
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW TITLE title .
    PARAMETER : p_vdate LIKE t9aa01-validfrom,
                p_dcggt LIKE t9aa01-hkont,
                p_dcgst1 LIKE t9aa01-hkont,
                p_dcgst2 LIKE t9aa01-hkont,
                p_na LIKE t9aa01-hkont.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 20.
    SELECTION-SCREEN PUSHBUTTON 2(10) text-001 USER-COMMAND SVE.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF SCREEN 500.
    Cheers,
    Senthil
    Edited by: Senthil on Jan 7, 2008 11:03 AM

    Hi,
    Try using the below code.
           data : w_var type string.
           CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
             EXPORTING
              DEFAULTOPTION        = 'Y'
               textline1            = 'test '
             TEXTLINE2            = ' '
               titel                = 'check'
             START_COLUMN         = 25
             START_ROW            = 6
             CANCEL_DISPLAY       = 'X'
            IMPORTING
              ANSWER               = w_var.
                     if w_var = 'J'.
                     else.
                     endif.
    Comments : J indicates Yes and N indicates No
    Regards,
    Jeswanth

  • How to capture screen in iOS 7?

    Hi!
    I can't make any screen capture on mi iPhone 5 with iOS7 running. When I try to press HOME and ON/OFF button, the iPhone go to lock mode and nothing else happends.
    How can i capture screens?
    Thank you so much.

    Your best move would have been not to have updated to beta software that's not on public release yet......

  • How do I screen capture just one element of my computer?

    I know there is a keyboard shortcut for it (Hold Command, Shift, and 4 keys, then press the Spacebar), but it doesn't work for me. Additionally, I can't find an option to adjust it in my Keyboard settings in my System Preferences. How can I turn this feature on or figure out the keyboard shortcut for it?

    ⌘ Shift 4 = Select to Capture to png. Shows measurements by curser.
    ⌘ Shift 4 then press space-bar = a shot of a single window & drop shadow
    ⌘ Shift 3 = Capture screen to png.
    The pngs are put on the desktop.
    Use control at the same time and just copy to clip board.
    Check the Utility Grab for more Options.

  • How do I screen capture an internet page to copy to a file?

    I am recently trying to adjust to a Mac system from PC.  Simple Question... How can I screen capture an internet page to copy it to a file?

    To screen-capture a window so you can paste the captured impage, press Shift-Control-Command-4, and when your cursor appears as a crosshair, press the Space Bar and it will turn into a small camera icon. With this, place the cursor over the window you would like to capture and then click. Now the image will be on your clipboard, so you can paste it wherever.
    However, screenshots take the image of what you see on-screen. If you would like to capture the entire Web page content only, then your best bet would be to print it to a PDF file. To do this, press Command-P and in the print dialogue that opens, choose the option to save the PDF to a file from the PDF menu.

Maybe you are looking for