A very simple, very stupid question

When I do screen grabs (shiftctrl+apple4) where do those pictures go??? I can't find them anywhere though I do hear the "camera snap" sound. Thank you for any help you can provide.

Screen shots are saved as .tiff files on the desktop. If you want to put the screen shot in the Clipboard, rather than create a file, hold down the Control key when you press the other keys. You can then paste the picture into a document.
You can also take pictures of the screen using the Grab application (in the Utilities folder).
(And that was not a stupid question!)

Similar Messages

  • Very simple and quick question about Arrays

    Hi,
    I have the following code to produce a student grades provessing system. I have got it to store data in the array, i just cant figure out how to add the integers from the row to produce a total. Thats all I want to do create a total from the 6 marks and add a percentage.
    Any help would be greatly appreciated.
    -------------CODE BELOW----------------------
    import java.util.*;
    public class newstudent1_2
    public static void main (String[]args)
    System.out.println ("-----------------------------------------------"); //Decorative border to make the welcome message stand out
    System.out.println (" Welcome to Student Exam Mark Software 1.2"); //Simple welcome message
    System.out.println ("-----------------------------------------------");
    int [][] mark;
    int total_mark;
    int num_students;
    int num_questions = 9;
    Scanner kybd = new Scanner(System.in);
    System.out.println("How many students?");
    num_students =kybd.nextInt();
    mark = new int[num_students][num_questions] ;
    for (int i=0; i<num_students; i++)
    System.out.println("Enter the Students ID");
    String student_id;
    student_id =kybd.next();
    System.out.println("Student "+i);
    for( int j=1; j<num_questions; j++)
    System.out.println("Please enter a mark for question "+j);
    mark[i][j]=kybd.nextInt();
    System.out.print("id mark1 mark2 mark3 mark4 mark5 mark6 mark7 mark8");
    //This section prints the array data into a table
    System.out.println();
    for (int i=0; i<num_students; i++)
    for( int j=0; j<num_questions; j++)
    System.out.print(mark[i][j]+"\t"); //the \t is used to add spaces inbetween the output table
    System.out.println();
    --------------END OF CODE---------------
    Thanks.

    I had to do this same sort of thing for a school assignment but i didnt use an array.
    import java.text.DecimalFormat;
    import TurtleGraphics.KeyboardReader;
    public class grade_avg
         public static void main(String[] args)
              int grade, total = 0, count = 0;
              double avg = 0.0;
              KeyboardReader reader = new KeyboardReader();
              DecimalFormat df = new DecimalFormat("0.00");
         for (;;)
                   grade = reader.readInt("Please enter a grade: ");
              if (grade > 0)
                        total = total + grade;
                        count ++;
              if (grade == 0)
                        avg = total / count;
                        System.out.println("The average is: " + df.format(avg));
                        System.exit(0);
    }output looks like:
    Please enter a grade: 100
    Please enter a grade: 50
    Please enter a grade: 0
    The average is: 75.00

  • Very very simple method return question

    Using a UML tool, the following code has been generated for a method called getScores.
         //getScores
        public String[] getScores(int nCount)
            //your code goes here
            return null;
         }Can I just clarify what this method is returning here using the parameter nCount - a complete String array or just a position in the array?
    And once i've put some code in the method body, i presume the return statement will no longer be null, but either the array or position in the array?

    Can I just clarify what this method is returning here
    using the parameter nCount - a complete String array
    or just a position in the array?It is return an array of Strings.
    >
    And once i've put some code in the method body, i
    presume the return statement will no longer be null,
    but either the array or position in the array?Not automagically. You will need to return an array of Strings

  • Very simple iTunes match question

    So if I physically unsync my music from my iPad can I still listen to it on said iPad through the cloud as long as I have an Internet connection? (I obviously have an iTunes match account)

        Don't have an iPad but that's what I've done on my MacBook.  Better yet, items that I forgot about getting through iTunes years ago are fully accesible without adding any bits to my cramped hard drive.  And they all play happily through Apple TV, pumped through the stereo. 
       Now I'm trying to figure out how to track my recently played items that are recently played through the cloud. I have a lot of new music that I'm playing at random though Apple TV and I'd like to make notes of the highlights.

  • Simple and stupid question for apps dba

    hi
    i have configured RAC 11gR2 on a C2D machine(just two nodes are there only) at home with 10gR2 db.its just a home configuration.
    As i am newbie and freshly starter,i want to install EBS R12 just to practice Some apps DBA stuff with that clusterware + 10g db.
    is there anything wrong?can i do that?
    which EBS R12 package to download for minimal configration for just practice stuff?
    any starter guide for this installation on linux OEL 5.4 x86_64??
    Regards

    Hi;
    which EBS R12 package to download for minimal configration for just practice stuff?
    any starter guide for this installation on linux OEL 5.4 x86_64??Firstly, your Question is not stupied. Secondly you need to download all related package from e-delivery(Now only R12.1.1 donwload avaliable there), you dont need to download NLS media pack.
    For installation please check
    Oracle Applications Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Oracle Applications Documentation Resources, Release 12.1 Doc ID: 790942.1
    Also check installation guide at:
    For r12.1.1:
    http://download.oracle.com/docs/cd/B53825_01/current/html/docset.html
    Regard
    Helios

  • One simple (maybe stupid) question:

    Why I can not rich all my TextInput objects using this code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.validators.ValidationResult;
    import mx.collections.ArrayCollection;
    import mx.controls.*;
    import mx.events.ItemClickEvent;
    // test for children
    private function ChildrenTest():void
    var bChildren:Array = tnav.getChildren();
    for (var i:uint = 0; i < bChildren.length; i++)
    var cChildren:Array = bChildren
    .getChildren();
    for (var n:uint = 0; n < cChildren.length; n++)
    if (cChildren[n].constructor == "[class TextInput]")
    Alert.show('on child name ' + cChildren[n].name.toString());
    //Alert.show('on Canvas ' + bChildren.name.toString());
    ]]>
    </mx:Script>
    <mx:Panel id="pnRates" layout="absolute" left="10"
    top="10" bottom="10" right="10">
    <mx:Button x="29" y="250" label="Test for the loop"
    click="ChildrenTest();" />
    <mx:TabNavigator id="tnav" width="540" height="170"
    y="45" x="29">
    <mx:Canvas id="can1" label="Tab 1" width="100%"
    height="406">
    <mx:Label x="20" y="10" text="TEXT1"/>
    <mx:TextInput x="173" y="8" id="Tab1Value1"/>
    <mx:Label x="20" y="50" text="TEXT2"/>
    <mx:TextInput x="173" y="48" id="Tab1Value2"/>
    <mx:Label x="20" y="90" text="TEXT3"/>
    <mx:TextInput x="173" y="88" id="Tab1Value3"/>
    </mx:Canvas>
    <mx:Canvas id="can2" label="Tab 2" width="100%"
    height="100%">
    <mx:Label x="20" y="10" text="TEXT1"/>
    <mx:TextInput x="189" y="8" id="Tab2Value1"/>
    <mx:Label x="20" y="50" text="TEXT2"/>
    <mx:TextInput x="189" y="48" id="Tab2Value2"/>
    <mx:Label x="20" y="90" text="TEXT3"/>
    <mx:TextInput x="189" y="88" id="Tab2Value3"/>
    </mx:Canvas>
    <mx:Canvas id="can3" label="Tab 3" width="100%"
    height="100%">
    <mx:Label x="20" y="10" text="TEXT1"/>
    <mx:TextInput x="232" y="8" id="Tab3Value1"/>
    <mx:Label x="20" y="50" text="TEXT2"/>
    <mx:TextInput x="232" y="48" id="Tab3Value2"/>
    <mx:Label x="20" y="90" text="TEXT3"/>
    <mx:TextInput x="232" y="88" id="Tab3Value3"/>
    </mx:Canvas>
    </mx:TabNavigator>
    </mx:Panel>
    </mx:Application>
    Thanks,
    Slava

    Slava,
    Two things:
    (1) you need to change this line:
    var cChildren:Array = bChildren.getChildren();
    To this:
    var cChildren:Array = bChildren
    .getChildren();
    Now, when you click the button, it should report the three
    text inputs on the visible tab. If you click on tab 3, it should
    report the 3 tabs on tab 3 *and* the 3 tabs on tab 1. Basically, it
    will only alert the text input children *after* you have clicked on
    a tab and the tab's contents have been created.
    (2) If you want to create all tabs at once when the app is
    loaded, change this:
    <mx:TabNavigator id="tnav" width="540" height="170" y="45"
    x="29">
    to this:
    <mx:TabNavigator id="tnav" width="540" height="170" y="45"
    x="29" creationPolicy="all">
    Now, when you launch your applicaton, it should display an
    alert for each TextInput control on each tab, without having to
    click on each tab.
    Hope that helps,
    Peter

  • Simple Crop tool question... how do I save the crop section?

    Hi,
    I have a very simple crop tool question. I'm a photoshop girl usually... so Illustrator is new to me. When I select the crop section I want... how do I save it?... if I select another tool in the tool panel, the crop section disappears and I can't get it back when I re-select Crop tool. If I select Save as... it saves the whole document...and not just my crop section.
    Like I said, simple question...but I just don't know the secret to the Illustrator crop tool.
    Thanks!
    Yzza

    Either press the Tab key or F key.

  • Very simple question, how do you configure windows 8.1 to use a SF card as the default install location for software applications?

    Very simple question, how do you configure windows 8.1 to use a SD card / external drive as the default install location for software applications? Primarily interested in apps installed from the windows store. This should be available in the settings
    charm within the windows store. This must have been overlooked in the development of windows 8.1 or is a bug.
    Regards, Bill
    * update
    I've tried modifying this key and the path:
    “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx”
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_store/how-do-you-install-apps-in-windows-8-from-the/c4fbe2a8-fd3d-41c1-b9a6-6f881eed374f
    Also tried using symlinks as detailed here:
    http://social.technet.microsoft.com/Forums/windows/en-US/8eee52c2-db0f-4032-8c72-7cd999e8b41a/windows-8-apps-installing-to-secondary-drive?forum=w8itprogeneral

    Here's some links I've used to try to figure this out:
    http://social.technet.microsoft.com/Forums/windows/en-US/2dfc0cd9-7d1b-41de-abce-e03fb6a5a383/metro-apps-not-working-in-windows-8-pro-x64-after-moving-users-and-programdata-folders?forum=w8itproinstall
    http://social.technet.microsoft.com/Forums/windows/en-US/8eee52c2-db0f-4032-8c72-7cd999e8b41a/windows-8-apps-installing-to-secondary-drive?forum=w8itprogeneral
    http://social.technet.microsoft.com/Forums/windows/de-DE/f5e33ac9-beab-4b99-b3ca-7cb5e6f415e4/how-do-you-change-metro-apps-default-install-location?forum=w8itprogeneral
    Regards, Bill
    The registry method does not work with 8.1.  I found this out the hard way.  Doing it on 8.1 will leave you reinstalling the OS if you didn't do a SRP beforehand.

  • VERY SIMPLE QUESTION REGARDING UML DIAGRAMS IN JDEVELOPER

    Hello there,
    I have a very simple question. I want to know how I can convert a class diagram that I have created in jdeveloper into a jpg image so I can put in word. When I try exporting it only has the uml to xmi option
    Does anyone have a suggestion?

    Hi,
    Right mouse click on the class diagram,
    than click publish diagram on the context menu
    and save as jpg where ever you want...
    Boris

  • A very very very simple question

    Hi guys,
    I have a very simple question and standard but I cant find anywhere...
    I have two dateTime variables, i need to calculate difference between this dates in days, thats it.
    I tried all functions and tried without success a Java Embed task but I couldnt retrieve this objects as java.util.Date so I couldnt calculate exactly the difference in days like this pure java code:
    (dataVencimento.getTime() - dataReferencia.getTime()) / 86400000L)
    can you help me this?

    Hi Jose
    Just see if these alternate approaches works. I know there may be lot like this and you may be lucky to find out simple out of box solution itself. If you want to solve this issue and move ahead, gives these approaches a shot.
    1. Create a very simple standalone WebService that takes 2 input date elements (can be of Date type or String type. If string type, convert to date in your java code). Create a simple operation like getDaysBetween(firstDate, secondDate). In the generated webservice impl class, use the java code apis (refer earlier link for usage), and get the difference. Return this value. NOW, invoke this WebService in your BPEL Process, and pass your 2 inputs (if the bpel payload elemetns are date object or string objects of date), and get output, and then use this output in your continuing bpel process.
    2. This approach, I did a long back. When we insert any expression using XPath, in that editor window on bottom right side, we see many categories and for each category we see list of functions we can use, like for String, we can use concat etc. I vaguely remember reading somewhere, that we can add our own custom functions also in this section. So explore this direction and see if you can add your own function and then use that fucntion with your 2 input dates.
    I have not given solution to your problem, but may be these directions can help you move ahead. Or something along these lines.
    Thanks
    Ravi Jegga

  • A very simple question..Very Urgent

    HI,
    I have a very simple question.I am able to set up the client authentication as well as server authentication. Now do i need to authenticate (both server as well as client auth.) for every request i send to the server on https...i think it should be like that it should authenticate only for the first time and for the next upcoming requests in same session should not require any server or client authentication.. i think as it happens in browsers..
    what is the fact actually??..can somebody put some light...right now in my case it is authenticating for every requests..
    This is what i have done..
    /****constructor part********/
    // and tm are arrays of keymanagers and trustmanagers for client keystore and truststore
    sslContext.init(km, tm, null);
    HttpsURLConnection.setDefaultSSLSocketFactory(ssf);
    HttpsURLConnection.setDefaultHostnameVerifier(new MYHostNameVerifier());
    /****Method to send the request and response*********/
    urlConn = (HttpsURLConnection)url.openConnection();
    urlConn.setDoInput(true);
    urlConn.setDoOutput(true);
    OutputStream os = urlConn.getOutputStream();
    ObjectOutputStream oos = new ObjectOutputStream(os);
    oos.writeObject(someobject);
    oos.flush();
    InputStream is1 = urlConn.getInputStream();
    ObjectInputStream ois = new ObjectInputStream(is1);
    SomeObject retObj = null;
    retObj = (SomeObject)ois.readObject();
    ois.close();
    System.out.println("Get String>>>>> "+retObj.getString());
    I am creating the object of this class..and calling the method again and again for sending requests and response..so i think handshake everytime i call the method...what i want is that handshake should happen for the first time and for the next requests no handshake or certificates should be checked or processed..
    is it possible ..how..what i need to do for that..
    please help me in this..
    Akhil Nagpal

    Hi,
    how could I achieve SSL Session Resumption using HttpsURLConnection.
    Thanks.

  • This is a very simple question,but I don't know.Please me.Thank you!

    I am a Chinese student in a university.I have a very simple question to ask.
    I have writed a EJB module,and I have deployed to Weblogic8.1 successfully.
    1.Now I want to write a client program.Is it necessary that the client program is packaged in the EJB package.For example ,the EJB package is Beans,is "package Beans " or "import Beans.*" necessary in my client program.
    2.If I only know the EJB interfaces,that means the EJB module is writed by other programer.I want to know how I can write the client program.How can I call EJB module's method writed by other programer.Could you give me a simple example?
    Thank you very much.

    I have writed a EJB module,and I have deployed to
    Weblogic8.1 successfully.:-)
    1.Now I want to write a client program.Is it
    necessary that the client program is packaged in the
    EJB package.For example ,the EJB package is Beans,is
    "package Beans " or "import Beans.*" necessary in my
    client program.You need not package your client with the EJB. It can be a JSP/servlet or a stand-alone application.
    2.If I only know the EJB interfaces,that means the
    EJB module is writed by other programer.I want to
    know how I can write the client program.How can I
    call EJB module's method writed by other
    programer.Could you give me a simple example?
    import java.util.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    import examples.*;
    class TestEJBHello {
        public static void main(String[] args) {
            Context context   = null;
            Object object     = null;
            // Hashtable for environment properties.
            Hashtable env = new Hashtable();
            env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            env.put(Context.PROVIDER_URL, "t3://localhost:7001");
            HelloHome home            = null;
            HelloWorld hello          = null;
            try {
                context     = new InitialContext(env);
                object      = context.lookup("HelloWorldTest");
                System.out.println(" JNDI Looked up >>> " +object);
                home        = (HelloHome)PortableRemoteObject.narrow(object, HelloHome.class);
                hello       = home.create();
                System.out.println(hello.hello());
            } catch(Exception e) {
                e.printStackTrace();
            } finally {
                close(context);        // Closes the initial context.
        private static void close(Context context) {
            try {
                context.close();
                System.out.println("*** Context closed. ***");
            } catch (NamingException namingException) {
                namingException.printStackTrace();
            } catch(Exception exception) {
                exception.printStackTrace();
    }Here's a sample client app code I use for a HelloWorld EJB. You need to have a EJB client JAR containing the home and remote interfaces in the classpath during compile time and runtime.
    x

  • HT4753 I have a very simple question: how do I view where Lion has autosaved my current version to (without the convoluted route of using finder)? In days gone by i'd simply use the save as function to see where it was being saved.

    I have a very simple question: how do I view where Lion has autosaved my current version to (without the convoluted route of using finder)? In days gone by i'd simply use the save as function to see where it was being saved.

    It's actually even easier than using Save As to see the full path to the currently open document. Just do a "Secondary click" on the document title in its window's title bar.
    Like you, I relied upon Save As my whole life to check a file's location and considered it a must-have capability. Turns out it's even faster to use the single-click method to reveal the full path to the open document. It displays the entire path to the current document starting from the level of your Mac, and works for files stored on drives as well as iCloud.
    If you're not sure how to do a secondary click, go into System Preferences, select Trackpad, Point & Click to find the current preference for secondary click on your Mac. If you happen to have a mouse with more than one button, it's probably the right button. As a trackpad user, I check the box to "Click or tap with two fingers," so a simple two finger tap on the title of an open document reveals its full path. This feature actually has been around for a very long time.
    Note that this is not the same thing as the Autosave and Versions menu, which is exposed using a little drop down triangle to the right of the title. There is no visual clue for the presence of this feature - you just have to know it's there, probably because this feature goes all the way back to pre-OS X days.

  • Very simple jstl question

    I for the life of me have not been able to find the answer to this very simple question, googling and looking at various documentation. What is the difference between accessing properties using $ or #? Is there a difference?
    Thanks

    Read on this excellent explanation about the unified EL: http://java.sun.com/products/jsp/reference/techart/unifiedEL.html

  • Very Simple C question - reading input parameters/flags... [SOLVED]

    This is an extremely simple question. Please forgive me for being a noob. I am writing an application in C (with GCC) called GAPE and need to be able to pass it parameters through a shell script (/usr/bin/gape) that can determine how it runs. To start with easy stuff, I want the end-user to be able to type "gape -V" to output the version of the program. How do I do that? I understand that I need to put the shell script in /usr/bin...where should I put the actual gcc-compiled gape application? Or do I even need a shell script? Can I just put the GAPE binary in /usr/bin and pass parameters to it directly? If so, how do I do that in C? Any help is greatly appreciated.
    Last edited by tony5429 (2008-03-10 12:00:21)

    include <stdio.h>
    main(int argc, char *argv[])
    int i;
    for(i = 1; i < argc; i++) //argc = the number of arguments
    printf("param nr %d: %s\n", i, argv[i]); // argv[i] contain the arguments, with 0 being the program name (anyone may correct me here)
    [jaqob@p238 c++-egna]$ ./a.out 1 2 3
    param nr 1: 1
    param nr 2: 2
    param nr 3: 3
    [jaqob@p238 c++-egna]$ ./a.out -h -V -zxvf
    param nr 1: -h
    param nr 2: -V
    param nr 3: -zxvf
    A very simple program that prints the parameters
    And yes, you can put the program in /usr/bin/ without a shellscript
    Last edited by JaQoB (2008-03-05 18:09:34)

Maybe you are looking for

  • How to restrict the Report based on sales office

    Hi Experts, I am using BW 3.5. I have a requirement that my sales report should give output to  particular user with his respective sales office only. For Example :   User,   Sales Office    A , Delhi    B, Mumbai User A should not be able to see the

  • How much more memory should I get on my 2009 MBP

    I have a MBP 2009 model 2.26 GHz Intel Core 2 Duo DDR3. Model# W8933NTF66D. that currently only has 2Gb of DDR memory and ever since I did the 10.10.1 update to Yosemite it has slowed down to a crawl so my question is, should I upgrade to 4Gb's or 8G

  • Printing landscape pdf to Linux CUPS shared printer

    I'm having a problem printing landscape pdf documents from Preview to printers on my Linux CUPS server. Documents print portrait style, with the right side of the document cut off. This occurs in both 10.4.11 and 10.5.2. Using Adobe Reader or printin

  • How to instantiate an object in a JSP page???

    I want from a JSP page instantiate an object from a client class, for example, and call its methods; one of these methods return me a RecordSet. But I don't having success on it. What am I doing wrong??? What would I do??? Have anybody a code sample?

  • [8i] ORA-12704: character set mismatch (and other issues)

    I've been trying to put together sample data on this problem since Friday, but I'm having issues. I'm thinking the problem is something specific to the old database I'm trying to work in: BANNER Oracle8i Enterprise Edition Release 8.1.7.2.0 - Product