How do i make selections without using the mouse?

for example, when I go to quit Photoshop, there is a box that comes up that asks whether I want to save changes to a file before I quit. Below are three buttons; "Don't Save", "Cancel", and "Save". The "Save" button is a dark blue, and if I simply hit the return key, I've made my selection as "Save". I know that if I hit the "Command" key and the period at the same time, I've made my selection as "Cancel".
What I can't figure out is how to make the selection for "Don't Save" only using the keyboard?
Thanks!

command d clicks the "Don't save" button from the keyboard without having to select it first in almost any application.

Similar Messages

  • How to open a JCalendarCombo without using the mouse ???

    In my swing-application i implementet a JCalendarCombo Object for selection of different Date Times.
    Now it's necessary to display this JCalendarCombo for example entering a Key (F1/F2 etc.)
    I didn't find a possibilty to realize this item.
    The JCalendarCombo package is downloaded with the following packages:
    org.gui.ButtonActionListener
    org.gui.ButtonItemListener
    org.gui.ComboBoxItemListener
    org.gui.JCalendar
    org.gui.JCalendarCombo
    org.gui.JDayButton
    org.gui.JDayLabel
    org.gui.TextFieldMouseListener
    All Classes instead of MouseListener are protected, so that it's not possible to call a method like "initializeCalendar" ore something like that.
    No methods like key-Listener are implementet.
    Here's the source code:
    * test6.java
    * Created on 13. März 2008, 15:25
    import org.gui.JCalendarCombo;
    import java.util.GregorianCalendar;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.Locale;
    import javax.swing.JComponent;
    import org.gui.JCalendar;
    import org.gui.JCalendarCombo;
    import java.awt.Robot;
    * @author goetz
    public class test6 extends javax.swing.JFrame {
    /** Creates new form test6 */
    public test6() {
    initComponents();
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    private void initComponents() {//GEN-BEGIN:initComponents
    jPanel1 = new javax.swing.JPanel();
    jTextField1 = new javax.swing.JTextField();
    jTextField2 = new javax.swing.JTextField();
    jTextField3 = new javax.swing.JTextField();
    jTextField4 = new javax.swing.JTextField();
    jTextArea1 = new javax.swing.JTextArea();
    jButton1 = new javax.swing.JButton();
    jButton2 = new javax.swing.JButton();
    jTable1 = new javax.swing.JTable();
    //org.gui.JCalendar cal=new org.gui.JCalendar();
    Date heute=new Date();
    GregorianCalendar today = new GregorianCalendar();
    today.setTime(heute);
    GregorianCalendar calendar = new GregorianCalendar();
    int currentmonth =today.get(GregorianCalendar.MONTH);
    int currentyear = today.get(GregorianCalendar.YEAR);
    int currentday = today.get(GregorianCalendar.DAY_OF_MONTH);
    calendar.set(currentyear, currentmonth, currentday);
    JCalendarCombo jCalendarCombo = new JCalendarCombo(JCalendarCombo.MONDAY, true, 1900, 3000, false);
    getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
    jCalendarCombo.setDateFormat(JCalendarCombo.YEAR_BIG, JCalendarCombo.MONTH, JCalendarCombo.DAY, '.');
    jCalendarCombo.setDate(calendar);
    addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent evt) {
    exitForm(evt);
    jPanel1.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
    jTextField1.setText("jTextField1");
    jPanel1.add(jTextField1, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 20, 130, -1));
    jTextField2.setText("jTextField2");
    jPanel1.add(jTextField2, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 60, 130, -1));
    jTextField3.setText("jTextField3");
    jPanel1.add(jTextField3, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 110, 130, -1));
    jTextField4.setText("jTextField4");
    jPanel1.add(jTextField4, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 190, 140, -1));
    jTextArea1.addKeyListener(new java.awt.event.KeyAdapter() {
    public void keyPressed(java.awt.event.KeyEvent evt) {
    jTextArea1KeyPressed(evt);
    jPanel1.add(jCalendarCombo,new org.netbeans.lib.awtextra.AbsoluteConstraints(250, 20, -1, -1) );
    jPanel1.add(jTextArea1, new org.netbeans.lib.awtextra.AbsoluteConstraints(250, 50, 70, 40));
    jButton1.setText("jButton1");
    jPanel1.add(jButton1, new org.netbeans.lib.awtextra.AbsoluteConstraints(50, 270, -1, -1));
    jButton2.setText("jButton2");
    jPanel1.add(jButton2, new org.netbeans.lib.awtextra.AbsoluteConstraints(160, 270, -1, -1));
    jTable1.setModel(new javax.swing.table.DefaultTableModel(
    new Object [][] {
    {null, null, null, null},
    {null, null, null, null},
    {null, null, null, null},
    {null, null, null, null}
    new String [] {
    "Title 1", "Title 2", "Title 3", "Title 4"
    jTable1.addKeyListener(new java.awt.event.KeyAdapter() {
    public void keyPressed(java.awt.event.KeyEvent evt) {
    jTable1KeyPressed(evt);
    jPanel1.add(jTable1, new org.netbeans.lib.awtextra.AbsoluteConstraints(250, 110, -1, -1));
    getContentPane().add(jPanel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(40, 30, 500, 350));
    jCalendarCombo.addKeyListener(new java.awt.event.KeyAdapter() {
    public void keyPressed(java.awt.event.KeyEvent evt) {
    jCalendarComboKeyPressed(evt);
    pack();
    }//GEN-END:initComponents
    public void jTable1KeyPressed(java.awt.event.KeyEvent evt) {
    // Add your handling code here:
    if(evt.getKeyCode()==evt.VK_ESCAPE)
    System.out.println("registriert");
    //jPanel1.setCursor(jTextField2);
    jButton1.requestFocus();
    public void jCalendarComboKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jTable1KeyPressed
    // Add your handling code here:
    if(evt.getKeyCode()==evt.VK_F6)
    System.out.println("registriert Calendar");
    //jPanel1.setCursor(jTextField2);
    //jButton1.requestFocus();
    }//GEN-LAST:event_jTable1KeyPressed
    public void jTextArea1KeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jTextArea1KeyPressed
    // Add your handling code here:
    if(evt.getKeyCode()==evt.VK_ESCAPE)
    System.out.println("registriert");
    //jPanel1.setCursor(jTextField2);
    //java.awt.event.FocusListener l=new java.awt.event.FocusListener();?????????????????????
    //jCalendarCombo.addFocusListener(FocusListener);???????????????????????
    //mvt.MOUSE_CLICKED;
    //org.gui.TextFieldMouseListener.mousePressed(mvt);????????????????????????????????
    try???????????????????????????????????????????????????????
    java.awt.Robot rob=new java.awt.Robot();????????????????????????????????????????????ß
    rob.mousePress(3)??????????????????????????;
    catch(Exception e)
    }//GEN-LAST:event_jTextArea1KeyPressed
    /** Exit the Application */
    public void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm
    System.exit(0);
    }//GEN-LAST:event_exitForm
    * @param args the command line arguments
    public static void main(String args[]) {
    new test6().show();
    // Variables declaration - do not modify//GEN-BEGIN:variables
    public javax.swing.JButton jButton2;
    public javax.swing.JTextField jTextField3;
    public javax.swing.JButton jButton1;
    public javax.swing.JTextArea jTextArea1;
    public javax.swing.JPanel jPanel1;
    public javax.swing.JTextField jTextField2;
    public javax.swing.JTextField jTextField1;
    public javax.swing.JTextField jTextField4;
    public javax.swing.JTable jTable1;
    public JCalendarCombo jCalendarCombo;
    // End of variables declaration//GEN-END:variables
    Has anybody an idea ????
    The parent Frame was created with sun one studio 4 community edition.
    The JCalendar Combo was implemented by myself and runs properly by mouse, not by keyboard.

    the code's not formatted so I'm not going to try to read it,
    and there's too many ?? to remove before it will compile,
    so, you say it works with the mouse - how, clicking a button?
    if so, search for the keyBindings tutorial where you can set up
    an action for (e.g.) F2 to do button.doClick()

  • Hello! I'm out of the country and all my iWeb information is on my computer at home. Now I need to make changes on the webpage... how can i do that without using the computer i made the page on? Thank you!!

    Hello! I'm out of the country and all my iWeb information is on my computer at home. Now I need to make changes on the webpage... how can i do that without using the computer i made the page on? Thank you!!

    iWeb uses the domain.sites2 files to store its assets.
    You'll find it here :
    ~/Library/Application Support/iWeb/
    where ~ is your Home directory.
    If you take a computer with you, you have to store that file in the same location.
    It's not different from taking documents with you if you want to edit them.
    A solution is to remotely control your computer at home.
    TeamViewer, LogMeIn, Apple Remote Desktop or any VNC application you can use, like "Chicken of the VNC".

  • How to dismiss the spelling dialogue without using the mouse

    I'd appreciate the right tip from anyone on how to dismiss the spelling dialogue in Mail without using the mouse. (I'm one of those guys who likes to use the keyboard as much as possible.) Here's the scenario:
    I open a new message in Mail, type my text, press Cmd-Shift-D, then (because I have it set to check spelling when I "click send") up pops the spelling dialogue. That's fine as far as it goes, but many times I don't need any corrections because either I don't care or because the words are fine but just not recognized by Mail. So until now what I do is use the mouse to click on the far left one of the three round buttons in the upper left corner of the dialogue. I would like not to have to use the mouse, but pressing Esc or any other keys I try doesn't work to make it go away.
    Your advice is welcome! Thanks.

    Well, that window is actually a floating window, which means that it is meant to hang around. Notice that if you move Mail to the background (without hiding it), the spelling window hides itself, then shows itself again when you bring Mail back to the front. Floating windows are kind of in their own little world, meant to float above windows while not interfering with keystrokes sent to the frontmost window.
    I would argue that it shouldn't be a floater, because nobody's going to want it around once they're done checking spelling. But that's kind of a matter of opinion, and obviously Mail's designers thought differently.
    BTW, in the course of writing this, I discovered something -- if you click in the spelling window, so that you could type in the field there, Command-W will actually close the floater. But, of course, that still requires a click in the window with the mouse.

  • How can I navigate through tabs without using the mouse?

    I want to know how to navigate through tabs without using a mouse... just like you can navigate through multiple windows by using <alt><tab> ... because it's extremely annoying when I'm working on something to have to take my hands off the keyboard and go to the mouse.

    You can also use Ctrl + Page Up and Ctrl + Page Down to go to the next and previous tab. I prefer those because it doesn't require the Shift key (Shift + Ctrl+ Tab) to go to the previous tab.
    See also [[Tabbed browsing]]

  • How can I make Time Machine use the ethernet cable to Time Capsule instead of the wireless connection? Wireless is too slow; has been taking 40 hours to create an initial 142 GB backup.

    How can I make Time Machine use the ethernet cable to Time Capsule instead of the wireless connection? Wireless is too slow; has been taking 40 hours to create an initial 142 GB backup.

    Plug in ethernet .. in the computer.. turn off wireless.

  • Is it possible to highlight text without using the mouse?

    I would like to apply the comment/highlight tool in Acrobat without using the mouse.
    I select text with shift + cursor. What is the quickest way of highlighting the selected text then? I do not want to use the mouse.
    From the programme help I learned that the keyboard shortcut U selects the highlighting tool. But it does not apply highlighting to text selected with the cursor.
    Any suggestions?
    Many thanks in advance!

    Thanks for your reply Dave, but I want to know if a pop-up has to be created internally when highlighting. Can you disable to sticky note part of the highlight?
    Here's an example: I highlight my college books and don't need all those pop-ups being made behind the scenes. In Acrobat X, all of my highlights would slow down the program immensely,
    thankfully in XI, it doesn't happen at all, nor do I want it to in the future. Thank you for your time.

  • When I am editing information is there a keyboard shortcut to advance to the next song without using the mouse to click "next"?

    When I am editing information is there a keyboard shortcut to advance to the next song without using the mouse to click "next"?

    Thank you so much. I've been trying to find a way to do this for a long time!
    Paul

  • Can you move between text boxes without using the mouse?

    Can you move between text boxes without using the mouse?  When I have mutliple text boxes as a template, and then need to move from one to the next can I do it without having to use the mouse to click the next box??

    Jon,
    Option-Tab will sequence through the tables.
    Jerry

  • How to get the position of a selected cell in a table without using the mouse event?

    Dear All,
        I have a question about table:After clicking the cell of a table, the cell is into the edit status. How to know the row number and column number of the cell, when I click a button?
       The link below is using the mouse down event:
       http://forums.ni.com/ni/board/message?board.id=170&message.id=260102&query.id=55917#M260102
       Is there any other way to do it? Having tried to using the "edit position"  property, but it seems not working well.
       Thanks for any suggestion.
    Hugo 
    Attachments:
    table.vi ‏17 KB

    It works well with the "edit position" property.
    See attached
    Attachments:
    table.vi ‏12 KB

  • How to select rows or columns of tables without using the mouse?

    2nd post ever! Yeah! \m/
    In Excel, I can select entire rows or columns of data WITHIN TABLES--i.e., not selecting entire sheet rows or columns--by going to any cell on the perimeter of the table, holding down shift+ctrl, and clicking a direction arrow. So for example, if I have a table in columns D-G and rows 1-5, I can highlight row 4 by going to the first or last cell of that row, holding down the shift+ctrl, and hitting the appropriate direction arrow. You might think this is superfluous given that you can use the mouse to select cells. But that becomes cumbersome with large tables, and this method can be more efficient even with small tables.
    Similarly, it's often useful to navigate tables, particularly large ones, by moving from any cell within the table to the end or beginning of that row or column by holding down ctrl and hitting the appropriate arrow key. In Excel, this ctrl+arrow key method also allows you to skip blank cells, which is another very useful navigational feature.
    I tried numerous combos involving shift, ctrl, command, alt/option and the arrow keys. Haven't found a way to do any of this yet.
    Anyone?

    Hi Josh,
    Numbers is organized differently than Excel, and the navigation tools are different too. Many of us miss our particular favorites from spreadsheets past, but this is Numbers, not a clone. The biggest adjustment is to go from huge monolithic sheet-tables containing virtual sub-tables to a simple blank sheet with small tables, sometimes many per sheet. Navigating is no big deal in these small tables and neither is getting from one small table to another, using the Sheets pane.
    Selecting a particular Table is as easy as clicking on the table's name in the Sheets pane. Selecting a particular row, or column, or ranges of rows or columns is done by clicking on the table's row and column labels, left side and top side once a cell is selected in the table.
    Numbers is weak at handling large Tables and documents that are large overall. We know this and many of us still prefer it to the alternative when the tool fits the task.
    Jerry

  • How to reference a class without using the new keyword

    I need to access some information from a class using the getter, but I don't want to use the new keyword because it will erase the information in the class. How can I reference the class without using the new keyword.
    ContactInfo c = new ContactInfo(); // problem is here because it erases the info in the class
    c.getFirstName();

    quedogf94 wrote:
    I need to access some information from a class using the getter, but I don't want to use the new keyword because it will erase the information in the class. How can I reference the class without using the new keyword.
    ContactInfo c = new ContactInfo(); // problem is here because it erases the info in the class
    c.getFirstName();No.
    Using new does not erase anything. There's nothing to erase. It's brand new. It creates a new instance, and whatever that constructor puts in there, is there. If you then change the contents of that instance, and you want to see them, you have to have maintained a reference to it somewhere, and access that instance's state through that reference.
    As already stated, you seem to be confused between class and instance, at the very least.
    Run this. Study the output carefully. Make sure you understand why you see what you do. Then, if you're still confused, try to rephrase your question in a way that makes some sense based on what you've observed.
    (And not that accessing a class (static) member through a reference, like foo1.getNumFoos() is syntactically legal, but is bad form, since it looks like you're accessing an instance (non-static) member. I do it here just for demonstration purposes.)
    public class Foo {
      private static int numFoos; // class variable
      private int x; // instance varaible
      public Foo(int x) {
        this.x = x;
        numFoos++;
      // class method
      public static int getNumFoos() {
        return numFoos;
      // instance method 
      public int getX() {
        return x;
      public static void main (String[] args) {
        System.out.println ("Foo.numFoos is " + Foo.getNumFoos ());
        System.out.println ();
        Foo foo1 = new Foo(42);
        System.out.println ("Foo.numFoos is " + Foo.getNumFoos ());
        System.out.println ("foo1.numFoos is " + foo1.getNumFoos ());
        System.out.println ("foo1.x is " + foo1.getX ());
        System.out.println ();
        Foo foo2 = new Foo(666);
        System.out.println ("Foo.numFoos is " + Foo.getNumFoos ());
        System.out.println ("foo1.numFoos is " + foo1.getNumFoos ());
        System.out.println ("foo1.x is " + foo1.getX ());
        System.out.println ("foo2.numFoos is " + foo2.getNumFoos ());
        System.out.println ("foo2.x is " + foo2.getX ());
        System.out.println ();
    }

  • How do i install opensolaris without using the virtual box??

    hi.
    i am new to solaris
    i am currently using a windows XP OS
    i got down the opensolaris cd from SUN
    how do i install opensolaris without using a virtual box ?

    The OpenSolaris CD is a "Live CD". You can boot off of the CD, and either run the OpenSolaris operating system directly, or you can select the "Install" icon on the LiveCD desktop. You can find full instructions here: http://dlc.sun.com/osol/docs/content/IPS/getst1.html
    Do you want to keep your Windows OS on the disk? If so, then you want to follow the instructions for partitioning your disk (unless you already have a spare partition).
    -- Alan

  • How to install snow leopard without using the dvd drive?

    Is it possible to install snowleopard  without using the dvd ? i have a macbook and i have unfortunatly broken the cd and dvd player..

    Yes you can.
    How to use Migration Assistant:
    http://support.apple.com/kb/HT4889?viewlocale=en_US
    http://support.apple.com/kb/HT4413?viewlocale=en_US
    http://support.apple.com/kb/TS1963

  • RPM - How to re-process prices without using the front end.

    Hi all,
    There is a way of re-processing prices without using the front end? For instance, using the front end, a new clearance is created state in rpm_clearance ‘pricechange.State.conflictCheckforApproved’ and changed for ‘pricechange.State.worksheet’ after the conflict check.
    Now, I want to re-process the same clearance without using the front end. I’ve tried to change again the STATE to ‘pricechange.State.conflictCheckforApproved’ but no success. Any suggestions?
    Thanks in advance.
    Regards

    Can you please attach your VI?
    Prashanth N
    National Instruments

Maybe you are looking for

  • Fact sheet link in transaction cic0 and crmd_order_bp

    Hello, I have created new Fact Sheet view, which display some products with links to it's detail by a sapevent. This link works in transaction cic0, but not in business partner cockpit. Is there any difference, how to create links for there applicati

  • Patch install problem in Solaris 10

    {color:#3366ff}Hi , I am trying to install patch 125100-10 to meet the requirement of our application system.But there seems something wrong. {color} bash-3.00# showrev -p | grep {color:#ff0000}125100{color} Patch: 120011-14 Obsoletes: 116781-02, 117

  • Workaround for unsupported Excel Substitute() function?

    I have a cell being analyzed which stores user input and after a button is clicked i need to analyze the text in that cell and replace every carriage return "char(10)" with the string "%0D".  Excel's Substitute() function can do this in one shot for

  • QM Sales Return Process

    Dear Friends, For return delivery inspection, I am using insp type 06. But the stock is not coming into unrestricted after I clear the lot. Is 06 insp type stock non relevant? Should I use 05? What is the difference between 05 and 06 insp types? Rega

  • Infopath form with workflow should be created in unique subsite?

    I need to create several InfoPath forms with workflows.  Should I use different subsite for each form and workflow. Or I can put them in one subsite? If I put them in one subsite, any concern of workflow interference? Thanks.