JComponent unreachable by tabbing, but SHIFT-tab works??

Hey all,
I have some weird behaviour happening with a JComboBox in the following JPanel code. The JPanel has several JLabels, JTextFields and JComboBoxes. All button one (the last one) of the JTextFields and JComboBoxes is reachable by pressing the TAB button. However, I can get to it if I press SHIFT+TAB and go through my focusable components backwards.
Either I'm missing something very simple, or maybe this is a bug. I would think it's me, not Java, that is causing this problem.
Any help is appreciated. Thanks.
* Created on Jul 20, 2006
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
package GUI;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
import inputHandlers.DigitDocument;
import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.TitledBorder;
* @author Michael C. Freake
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
public class CurrCovgPanel extends JPanel implements FocusListener{
     private static int WIDTH, HEIGHT;
     private static Color BACKGROUND_COLOR, GREEN_COLOR = Color.GREEN, WHITE_COLOR = Color.WHITE;
     public CurrCovgPanel(Color bgColor, int width, int height){
          super(new FlowLayout(FlowLayout.LEADING,0,1));
          //BACKGROUND_COLOR = bgColor;
BACKGROUND_COLOR = Color.BLUE;
          WIDTH = width;
          HEIGHT = height;
          init();
          // TODO Create a 'load' method that would put actual buffer values in the components.
          // Otherwise we can default to blank/default values in all fields.
          // TODO May want to create and call validate method here that would indicate any errors
          // to the user on load.
          // OR Have the CovgApp call this validate method AFTER the screen has been loaded.
     public void init(){
          setBackground(BACKGROUND_COLOR);
          setPreferredSize(new Dimension(WIDTH,HEIGHT));
          setBorder(BorderFactory.createTitledBorder(
                                        BorderFactory.createLineBorder(Color.YELLOW),
                                        "CURRENT COVERAGE AND PREMIUMS",
                                        TitledBorder.CENTER, TitledBorder.TOP,
                                        null, Color.YELLOW));
          int labelHeight = 15;
          // The following components should be Globals to whatever class they end up in.
          // If they are globals, we can access their values and modify them in other methods.
          JTextField buildLimit1 = new JTextField(new DigitDocument(4),"0",0);
          buildLimit1.setPreferredSize(new Dimension(35,labelHeight));
          buildLimit1.setHorizontalAlignment(JTextField.RIGHT);
          buildLimit1.setForeground(Color.CYAN);
          buildLimit1.setBackground(BACKGROUND_COLOR);
          buildLimit1.setBorder(null);
          buildLimit1.addFocusListener(this);
          JTextField buildLimit2 = new JTextField(new DigitDocument(4),"0",0);
          buildLimit2.setPreferredSize(new Dimension(35,labelHeight));
          buildLimit2.setHorizontalAlignment(JTextField.RIGHT);
          buildLimit2.setForeground(Color.CYAN);
          buildLimit2.setBackground(BACKGROUND_COLOR);
          buildLimit2.setBorder(null);
          buildLimit2.addFocusListener(this);     
          JComboBox buildDed1 = new JComboBox();
          buildDed1.setPreferredSize(new Dimension(60, labelHeight));
          buildDed1.setForeground(Color.CYAN);
          JComboBox buildDed2 = new JComboBox();
          buildDed2.setPreferredSize(new Dimension(60, labelHeight));
          buildDed2.setForeground(Color.CYAN);
          JComboBox buildForm1 = new JComboBox();
          buildForm1.setPreferredSize(new Dimension(60, labelHeight));
          buildForm1.setForeground(Color.CYAN);
          JComboBox buildForm2 = new JComboBox();
          buildForm2.setPreferredSize(new Dimension(60, labelHeight));
          buildForm2.setForeground(Color.CYAN);
          JLabel buildPrem1 = new JLabel("1234",JLabel.RIGHT);
          buildPrem1.setPreferredSize(new Dimension(30,labelHeight));
          buildPrem1.setForeground(Color.CYAN);
          JLabel buildPrem2 = new JLabel("5678",JLabel.RIGHT);
          buildPrem2.setPreferredSize(new Dimension(30,labelHeight));
          buildPrem2.setForeground(Color.CYAN);
          JTextField contLimit1 = new JTextField(new DigitDocument(4),"0",0);
          contLimit1.setPreferredSize(new Dimension(35,labelHeight));
          contLimit1.setHorizontalAlignment(JTextField.RIGHT);
          contLimit1.setForeground(Color.CYAN);
          contLimit1.setBackground(BACKGROUND_COLOR);
          contLimit1.setBorder(null);
          contLimit1.addFocusListener(this);     
          JTextField contLimit2 = new JTextField(new DigitDocument(4),"0",0);
          contLimit2.setPreferredSize(new Dimension(35,labelHeight));
          contLimit2.setHorizontalAlignment(JTextField.RIGHT);
          contLimit2.setForeground(Color.CYAN);
          contLimit2.setBackground(BACKGROUND_COLOR);
          contLimit2.setBorder(null);
          contLimit2.addFocusListener(this);
          JComboBox contDed1 = new JComboBox();
          contDed1.setPreferredSize(new Dimension(60, labelHeight));
          contDed1.setForeground(Color.CYAN);
          JComboBox contDed2 = new JComboBox();
          contDed2.setPreferredSize(new Dimension(60, labelHeight));
          contDed2.setForeground(Color.CYAN);
          JComboBox contForm1 = new JComboBox();
          contForm1.setPreferredSize(new Dimension(60,labelHeight));
          contForm1.setForeground(Color.CYAN);          
          JComboBox contForm2 = new JComboBox();
          contForm2.setPreferredSize(new Dimension(60,labelHeight));
          contForm2.setForeground(Color.CYAN);
          JLabel contPrem1 = new JLabel("4321",JLabel.RIGHT);
          contPrem1.setPreferredSize(new Dimension(30,labelHeight));
          contPrem1.setForeground(Color.CYAN);
          JLabel contPrem2 = new JLabel("8765",JLabel.RIGHT);
          contPrem2.setPreferredSize(new Dimension(30,labelHeight));
          contPrem2.setForeground(Color.CYAN);
          JComboBox liabLimit = new JComboBox();
          liabLimit.setPreferredSize(new Dimension(60,labelHeight));
          liabLimit.setForeground(Color.CYAN);
          JLabel liabPrem1 = new JLabel("7", JLabel.RIGHT);
          liabPrem1.setPreferredSize(new Dimension(30,labelHeight));
          liabPrem1.setForeground(Color.CYAN);
          JLabel liabPrem2 = new JLabel("7", JLabel.RIGHT);
          liabPrem2.setPreferredSize(new Dimension(30,labelHeight));
          liabPrem2.setForeground(Color.CYAN);
          JComboBox liabForm = new JComboBox();
          liabForm.setPreferredSize(new Dimension(60,labelHeight));
          liabForm.setForeground(Color.CYAN);
//          ********** THIS IS THE JCOMBOBOX THAT SHOULD TAB INTO THE glassLimit JCOMBOBOX          
          JComboBox medLimit = new JComboBox();
          medLimit.setPreferredSize(new Dimension(60,labelHeight));
          medLimit.setForeground(Color.CYAN);
          JLabel medPrem = new JLabel("12", JLabel.RIGHT);
          medPrem.setPreferredSize(new Dimension(30,labelHeight));
          medPrem.setForeground(Color.CYAN);
//          ********** THIS IS THE JCOMBOBOX THAT ISN"T ALLOWING FOCUS
          JComboBox glassLimit = new JComboBox();
          glassLimit.setPreferredSize(new Dimension(60,labelHeight));
          glassLimit.setForeground(Color.CYAN);
          JLabel glassPrem = new JLabel("5", JLabel.RIGHT);
          glassPrem.setPreferredSize(new Dimension(30,labelHeight));
          glassPrem.setForeground(Color.CYAN);
          JLabel grcYN = new JLabel("N", JLabel.LEFT);
          grcYN.setPreferredSize(new Dimension(30,labelHeight));
          grcYN.setForeground(WHITE_COLOR);
          JLabel subTotalPrem1 = new JLabel("539", JLabel.RIGHT);
          subTotalPrem1.setPreferredSize(new Dimension(30,labelHeight));
          subTotalPrem1.setForeground(WHITE_COLOR);
          JLabel subTotalPrem2 = new JLabel("554", JLabel.RIGHT);
          subTotalPrem2.setPreferredSize(new Dimension(30,labelHeight));
          subTotalPrem2.setForeground(WHITE_COLOR);
          // Setting up and adding Location 1 & 2 headers
          JLabel loc1 = new JLabel("Location 1", JLabel.RIGHT);
          loc1.setPreferredSize(new Dimension(60,labelHeight));
          loc1.setForeground(Color.YELLOW);
          JLabel loc2 = new JLabel("Location 2", JLabel.RIGHT);
          loc2.setPreferredSize(new Dimension(60,labelHeight));
          loc2.setForeground(Color.YELLOW);
          JLabel prem1 = new JLabel("Premium", JLabel.RIGHT);
          prem1.setPreferredSize(new Dimension(60,labelHeight));
          prem1.setForeground(Color.YELLOW);
          JLabel prem2 = new JLabel("Premium", JLabel.RIGHT);
          prem2.setPreferredSize(new Dimension(60,labelHeight));
          prem2.setForeground(Color.YELLOW);
          add(loc1);
          add(Box.createHorizontalStrut(155));
          add(prem1);
          add(Box.createHorizontalStrut(30));
          add(loc2);
          add(Box.createHorizontalStrut(155));
          add(prem2);
          // Setting up static JLabels for viewing on the screen
          JLabel build = new JLabel("BUILD", JLabel.RIGHT);
          build.setPreferredSize(new Dimension(40,labelHeight));
          build.setForeground(GREEN_COLOR);
          JLabel cont = new JLabel("CONT", JLabel.RIGHT);
          cont.setPreferredSize(new Dimension(40, labelHeight));
          cont.setForeground(GREEN_COLOR);
          JLabel liab = new JLabel("LIAB", JLabel.RIGHT);
          liab.setPreferredSize(new Dimension(40, labelHeight));
          liab.setForeground(GREEN_COLOR);
          JLabel med = new JLabel("MED", JLabel.RIGHT);
          med.setPreferredSize(new Dimension(40, labelHeight));
          med.setForeground(GREEN_COLOR);
          JLabel glass = new JLabel("GLASS", JLabel.RIGHT);
          glass.setPreferredSize(new Dimension(40,labelHeight));
          glass.setForeground(GREEN_COLOR);
          JLabel grc = new JLabel("GRC", JLabel.RIGHT);
          grc.setPreferredSize(new Dimension(40,labelHeight));
          grc.setForeground(GREEN_COLOR);
          JLabel subTotal = new JLabel("SUB TOTAL", JLabel.LEFT);
          subTotal.setPreferredSize(new Dimension(70,labelHeight));
          subTotal.setForeground(GREEN_COLOR);
          JLabel ded1 = new JLabel("ded", JLabel.RIGHT);
          ded1.setPreferredSize(new Dimension(40, labelHeight));
          ded1.setForeground(WHITE_COLOR);
          JLabel ded2 = new JLabel("ded", JLabel.RIGHT);
          ded2.setPreferredSize(new Dimension(40,labelHeight));
          ded2.setForeground(WHITE_COLOR);
          JLabel form1 = new JLabel("form", JLabel.RIGHT);
          form1.setPreferredSize(new Dimension(40, labelHeight));
          form1.setForeground(WHITE_COLOR);
          JLabel form2 = new JLabel("form", JLabel.RIGHT);
          form2.setPreferredSize(new Dimension(40, labelHeight));
          form2.setForeground(WHITE_COLOR);
          JLabel form3 = new JLabel("form", JLabel.RIGHT);
          form3.setPreferredSize(new Dimension(40, labelHeight));
          form3.setForeground(WHITE_COLOR);
          // Load the coverage JPanel to the Window
          // Line 1 - BUILD
          add(build);
          add(Box.createHorizontalStrut(5));
          add(buildLimit1);
          add(Box.createHorizontalStrut(230));
          add(buildLimit2);
          add(Box.createHorizontalStrut(210));
          // Line 2 - BUILD Deductible
          add(ded1);
          add(Box.createHorizontalStrut(5));
          add(buildDed1);
          add(Box.createHorizontalStrut(200));
          add(buildDed2);
          add(Box.createHorizontalStrut(180));
          // Line 3 - BUILD Form
          add(form1);
          add(Box.createHorizontalStrut(5));
          add(buildForm1);
          add(Box.createHorizontalStrut(140));
          add(buildPrem1);
          add(Box.createHorizontalStrut(30));
          add(buildForm2);
          add(Box.createHorizontalStrut(180));
          add(buildPrem2);
          // Line 4 - CONT
          add(cont);
          add(Box.createHorizontalStrut(5));
          add(contLimit1);
          add(Box.createHorizontalStrut(230));
          add(contLimit2);
          add(Box.createHorizontalStrut(210));
          // Line 5 - CONT Deductible
          add(ded2);
          add(Box.createHorizontalStrut(5));
          add(contDed1);
          add(Box.createHorizontalStrut(200));
          add(contDed2);
          add(Box.createHorizontalStrut(180));
          // Line 6 - CONT Form
          add(form2);
          add(Box.createHorizontalStrut(5));
          add(contForm1);
          add(Box.createHorizontalStrut(140));
          add(contPrem1);
          add(Box.createHorizontalStrut(30));
          add(contForm2);
          add(Box.createHorizontalStrut(180));
          add(contPrem2);
          // Line 7 - LIAB
          add(liab);
          add(Box.createHorizontalStrut(5));
          add(liabLimit);
          add(Box.createHorizontalStrut(140));
          add(liabPrem1);
          add(Box.createHorizontalStrut(270));
          add(liabPrem2);
          // Line 8 - LIAB Form
          add(form3);
          add(Box.createHorizontalStrut(5));
          add(liabForm);
          add(Box.createHorizontalStrut(460));
          // Line 9 - MED
          add(med);
          add(Box.createHorizontalStrut(5));
          add(medLimit);
          add(Box.createHorizontalStrut(140));
          add(medPrem);
          add(Box.createHorizontalStrut(270));
          // Line 10 - GLASS
          add(glass);
          add(Box.createHorizontalStrut(5));
          add(glassLimit);
          add(Box.createHorizontalStrut(140));
          add(glassPrem);
          add(Box.createHorizontalStrut(280));
          // Line 11 - GRC
          add(grc);
          add(Box.createHorizontalStrut(5));
          add(grcYN);
          add(Box.createHorizontalStrut(440));
          // Line 12 - SUB TOTAL
          add(subTotal);
          add(Box.createHorizontalStrut(175));
          add(subTotalPrem1);
          add(Box.createHorizontalStrut(270));
          add(subTotalPrem2);
     /* (non-Javadoc)
      * @see java.awt.event.FocusListener#focusGained(java.awt.event.FocusEvent)
     public void focusGained(FocusEvent e) {
          // TODO Could adjust color here to look better.
          JComponent theComp = (JComponent) e.getSource();
          if (theComp instanceof JTextField){
               theComp.setBackground(Color.WHITE);
          System.out.println("theComp = " + theComp);
     /* (non-Javadoc)
      * @see java.awt.event.FocusListener#focusLost(java.awt.event.FocusEvent)
     public void focusLost(FocusEvent e) {
          // TODO Could perform validation checks and do call to rating here.
          JComponent theComp = (JComponent) e.getSource();
          if (theComp instanceof JTextField){
               theComp.setBackground(BACKGROUND_COLOR);
          System.out.println("theComp = " + theComp);
}

Here some code to help anyone run and view my panel:
Main:
package GUI;
import java.awt.Color;
import javax.swing.JFrame;
public class ShowPanel extends JFrame{
     public ShowPanel(){
          super();
          setTitle("MY Example");
          getContentPane().add(new CurrCovgPanel(Color.BLUE, 590,240));
          pack();
          setResizable(false);
          setVisible(true);
     public static void main(String[] args){
          ShowPanel a = new ShowPanel();
}Another need component:
package inputHandlers;
import java.awt.Toolkit;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;
public class DigitDocument extends PlainDocument{
     private int maxChars;
     public DigitDocument(int maxChars){
          super();
          this.maxChars = maxChars;
     public void insertString(int offs, String str, AttributeSet a) throws BadLocationException, NumberFormatException{
       try{
          if(this.getLength()+str.length() > maxChars) throw new NumberFormatException();//<----
          int i = Integer.parseInt(str);
          super.insertString(offs, str, a);
       catch(NumberFormatException e){
          // do nothing because a user input was not a digit
          Toolkit.getDefaultToolkit().beep();
}

Similar Messages

  • After upgrade from 34 to 35, control click still opens new tab but new tab won't load upon selection. i have to click address and press enter or click go

    I've used Firefox for many years, I really like it and have been readily recommending it to others.
    However after finally upgrading to 35.0.1 from 34.x I now have a very annoying and time-consuming issue.
    So much so that I'm thinking of attempting a downgrade!
    I didn't really want to upgrade but Firefox kept bothering me and I inadvertently accepted. Is there a way to switch this upgrade reminder off?
    Anyway, previously I would Ctrl-click a link and it would open a new tab but not jump to it. It would remain unloaded until I clicked it. Then it would load as normal.
    After the upgrade, I Ctrl-click a link and it still opens a new unloaded tab. So far, so good. Now however, when I click the new unloaded tab, it just sits there and does nothing. I have to click the URL in the address bar and either press <Enter> or click the 'Go' arrow.
    I use this feature sometimes 100s of times a day so this is extremely annoying as it adds considerable time and extra clicks to each new link I click.
    I'm wondering if it could be a problem with one of my plugins. Can I temporarily disable them all at once to see if that's it?
    I will try disabling the tab related plugins.
    I've tried toggling 'Don't load tabs until selected' on the Tabs page from Tools menu, Options.
    Any help would be thoroughly appreciated as I would like to return to being a Firefox Fan

    It is unlikely this issue is to do with Firefox upgrading. Firefox 36 will come out any day soon you should then be on that rather than considering an outdated Firefox 34 which is now not secure, and not supported.
    * See don't [[Install an older version of Firefox]]
    You have not listed your plugins, and Yes you could try using Firefox's add-on manager to make sure they are all set as click to activate or even temporarily set as never activate.
    I am not familiar with the add-on
    * UnloadTab 0.24.7 https://addons.mozilla.org/en-US/firefox/addon/unloadtab/
    That certainly may be part of the problem try deactivating that with Firefox's addon manager. For all I know this may be the intended behaviour of that addon.
    Also troubleshoot the issue with Firefox's safe mode, remembering that does NOT disable plugins you will still need to do that manually.
    * [[Troubleshoot Firefox issues using Safe Mode]]
    Please post back with how you get on and what you have tried, Including upgrading to Firefox 36 when that is available.
    [https://www.mozilla.org/en-US/firefox/releases/ Release notes]
    * [https://www.mozilla.org/en-US/firefox/35.0.1/releasenotes/ Fx35.0.1 release notes]
    ** The pre release notes for Fx 36 [https://www.mozilla.org/en-US/firefox/36.0beta/releasenotes/ (beta)]
    ** Likely link to new version fx36 release notes https://www.mozilla.org/en-US/firefox/36.0/releasenotes/

  • Pages open quickly in current tab but new tabs open very slowly

    The new tabs open at about the same speed as opening another copy of Firefox. This has been happening since my Norton Security crashed and disappeared. I am working with Norton to reinstall but it will not install the new download.

    Right-click on the bookmark button. Depending on any add-ins you have, the context menu may offer you a range of options e.g. Open (in existing tab), Open in New Tab, Open in New window, etc
    Try the Tab Mix Plus add-in.

  • How to control navigation flow in order using tab and shift tab key?

    In JDeveloper 11.1.1.3, how to set the focus on ADF components in order while a tab key is clicked.I dint find any useful articles so far but I think Javascript is the only way to acheive this.Can anyone give me any ideas on this pls?
    Thanks,
    Swathi Patnam

    Swathi Patnam wrote:
    In JDeveloper 11.1.1.3, how to set the focus on ADF components in order while a tab key is clicked.I dint find any useful articles so far but I think Javascript is the only way to acheive this.Can anyone give me any ideas on this pls?Javascript is possibly one way to achieve it. Take a look at an extract from Frank Nimphius' book [url http://books.google.gr/books?id=wlXyDIEyIHEC&pg=PA615&dq=Nimphius+%22tab+order%22&hl=en&ei=D6bATJqgMYb54Ab06cnTCw&sa=X&oi=book_result&ct=result&resnum=1&ved=0CCMQ6AEwAA#v=onepage&q&f=false] here suggesting an implementation based on JavaScript. Of course you will have to buy the book to see the complete solution. ;)
    Since the tab order is from top to bottom, the other solution suggested - check this post: Re: How to set tab order in ADF - is to keep each horizontal "line" of components in a af:panelFormLayout with its rows attribute set to 1. This is a work-around not based on a tab index but it would do the job if you can consistently group your components inside panelFormLayouts as mentioned.

  • How do I Delete Tabs that I made in FireFox 4 (Not AP Tabs) but Regular TABS? I am in TEARS. Plz HELP!

    I love Fire Fox. I Downloaded the latest version: Fire Fox (4). I went crazy adding Tabs to the top of my Browser (Like 20 different Tabs). If was a huge mistake... and now it is so slow... and crashes constantly. I should have stuck with Book Marks instead... or only a few Tabs... like 2 or 3. Now I want to Delete the Tabs I made... but can not figure out how. It should be as easy as Right Click... Delete Tab... or as easy as creating Tabs was... but it is not. Please Help. Mm69

    For some reason, Firefox is not forgetting the tabs that you close. This could be a problem with the [http://kb.mozillazine.org/sessionstore.js sessionrestore.js] file maintained by Firefox. <BR><BR>Following steps would enable you to delete this file so that Firefox forgets about your open tabs and just opens your home page when you launch Firefox the next time:<BR><BR>
    # Locate your Profile folder. See instructions in this article: [[Profiles#w_how-do-i-find-my-profile]]
    # Quit Firefox by clicking on '''File''' menu and then '''Exit'''.
    # In your Profile folder, delete files with names ''sessionstore.js'', ''sessionstore.bak'', ''sessionstore-1.js'', ''sessionstore-2.js'' etc.
    # Launch Firefox again.
    <BR>
    Let us know if this resolves your problem.

  • Tab key or shift tab

    Is it possible to assign a attribute to a config 2 panel for Photoshop will make it behave like the tool panel when using the shift-tab key.
    the shift tab hide all except the tool panel, while the tab key hide all.
    Or perhaps another way to go about having a custom panel remain on my second screen while working with tab or shift tab in ps cs5 mac os x 10.6.4

    AFAIK, there is no such opportunity in Configurator.
    The Only workaround I Know is to set and save  your own workspace in Photoshop
    May be you could add in your saved workspace  a panel with button that open other panel ( channel-Layers and so on…)  when nedeed

  • Search bar opens in new tab but without focus

    I have Firefox operating on 2 computers. On one when I use the search bar the results are in a new tab and that tab gets the active focus. On the other the search bar results are in a new tab, but that tab does not get the active focus. Both computers used to give the search results in a new tab with active focus. What can I do to give the other one active focus on search results?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • How can you set up a custom keyboard shortcut for Next Tab and Previous Tab?

    You can do this in Chrome because there is a top menu item for it, and OS X supports easily rebinding of keyboard shortcuts that are in the main menus.
    Is this possible in Firefox? Using a two handed shortcut to switch tabs is annoying when you want to keep one hand on the mouse!
    Thanks!

    Keyboard shortcuts
    * https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts
    -> Next Tab
    * Ctrl + Tab
    * Ctrl + Page Down
    -> Previous Tab
    * Ctrl + Shift + Tab
    * Ctrl + Page Up
    Check and tell if its working.

  • Shift-Tab not working

    For some reason, using Shift-Tab to select fields in reverse does not work properly in Safari and other browsers (Chrome, Firefox). When I hit Shift-Tab, the browser window closes, or, if more than one tab is open, I am warned about closing all the tabs. This is not a new problem but I cannot recall when it started. Thanks.           

    I looked in System Preferences/Keyboard which was fine but then realized I have Witch installed. I looked at triggers there and of course, the trigger for closing a window was Shift-Tab. Deleting that fixed the problem. Thanks.

  • Shift-Tab to decrease indent level in list not working.

    I really can't say it any clearer: when I press Shift-Tab to decrease the indent level (for example in an outline-style list), it is not decreasing the indent level.
    This is for Pages 5.1/Mavericks 10.9.1
    This used to work in iWork '09 but I just tried it in Pages '09 and I get a error beep.
    The only thing I can think of is that there is some accessibility or other command that is overriding this but I can't figure out what.
    Any ideas?

    PeterBreis0807 wrote:
    It is working for me. I tried Numbered, Letter and Harvard lists.
    The only place it doesn't work is in tables where it jumps cells.
    What do you actually mean by "Outline style list"?
    Peter
    I'm using a Harvard list. It simply is not working.
    Just called AppleCare and they had not seen this issue but I got bumped up to iWork support (or whatever they are calling it now). They are calling me back tomorrow.
    Command-] works for indenting as well but Command-[ does not work for outdenting.
    My guess is it is a conflict but I thought maybe someone had run into this before and there might be a quick fix.

  • How export to csv work in safari browser? In my application export to csv open like a raw data in new tab. But other browsers working great!. Need to open in a csv file or save it as a csv file.

    How export to csv work in safari browser?
    In my application export to csv open like a raw data in new tab.
    But other browsers working great!.
    Need to open in a csv file or save it as a csv file.
    Please suggest me. Thank you in advance!.

    Hi Adrian,
    Why don't you try any another software for opening CSV files then Notepad ? According to my experience, you can use these softwares to open an CSV files and they are:-
    Microsoft Excel
    Open Office Calc
    Google Docs
    Also there is an additional tool available known as CSV viewer. You may try this, download it from here http://www.csvviewer.com/
    I've never used Notepad for opening CSV files, because sometimes it contains some symbols which are not not at all compatibile with Notepad.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Latest update installed, then only 1 tab works. Others show up, but don't work.

    The latest update came on Tuesday, I think. The problem was immediate, but I waited a couple of days to see if someone else could report it and it would be fixed. That didn't happen and, because the Feedback doesn't work (it won't fire up in the first tab), I had to find another way. It took a while but I finally got here.
    When FF comes up, there's one tab showing. I can use that tab - ONLY. And, if I need to change the page on that tab, I have to back out of FF totally and restart it.
    I can click on new tabs and fill the screen with them, if I want, and, I can even click content to the tab - but it doesn't load or show on the screen, even when that tab is selected. I even left several tabs 'cooking' and went back to my AOL browser. When I returned, the tabs were still trying to load but obviously they couldn't.
    I am so far behind in my work that it will take me DAYS AND DAYS to catch up. I need to be able to use several tabs plus some bookmarks and other stuff, all at once. I normally have 5 tabs programmed in an, until this update, FF would open with at least those 5 tabs sitting, waiting to get started.
    PLEASE, get me up and running as quickly as possible. I really don't want to go back to IE or fire up Chrome because my bookmarks are very important to what I do. I really, really like FF (and hate IE), so PLEASE, PLEASE, PLEASE.

    I have exactly the same problem and a reinstallation won't solve anything !
    You will even not be able to finalize the installation !
    Freeze in Windows Seven after several minutes even after having cleared CMOS + loads of optimal mode or fail safe mode...
    Here is my computer:
    -MSI P55M-GD45
    -Intel CoreI5 750
    -Noctua NH-D14---> CPU @ 28°
    -2 X 1Go Crucial Balistix DDR3
    -2 X SAMSUNG SPINPOINT T166 - 500GO SATA II 7200TRS/MN 16MO (HD501LJ)
    -2 X Seagate 1.5 To 32 Mo 7200 tpm
    -2600XT fanless gigabyte
    -Corsair 520VX or HX I forgot it
    No problem with the last bios 1.1.
    !!!!! Totaly unstable with the last bios 1.5 !!!
    I read your solution about reinstalling the OS after a bios update (that's the first
    time that I read it and I owned something as 15 motherboards in the last 10 years...but
    you have 20k post so I think that you know what you write...)
    So I tried to REINSTALL after "upgrade" of the firmware 1.5 of the MSI P55M-GD45.
    I did it with a USB KEY....not [email protected] with defaults values !
    The only thing to do is downgrade the bios in 1.1 and now no problem @ 3.8 GHz !!!
    WHY IS THIS BIOS SO unstable ?
    What will MSI do ?
    I have never had a so unstable motherboard after a bios upgrade !

  • I can no longer get to Facebook Via firefox It comes up loading in the tab but does not get any further one minute it was working the next it was,nt should I try uninstalling firefox then reinstall or does anyone know what could of happened thanks

    # Question
    I can no longer get to Facebook Via firefox It comes up loading in the tab but does not get any further one minute it was working the next it was,nt should I try uninstalling firefox then reinstall or does anyone know what could of happened thanks

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Shift-Tab Keyboard Shortcut not working

    For some reason, my Shift-Tab keyboard shortcut is not work in TextEdit, PowerPoint, and NeoOffice. Has anyone else run into this problem?
    It's very annoying having to deal with Bulleted lists and setting the proper indentation!
    I did a clean install of Leopard as well as updating to the 10.5.1 patch just released.

    Well, I found the problem. The new Speech option, "Speak selected text when key is pressed" to the Shift+Tab combo by default. Changing this to something else or disabling it fixes the problem.

  • My University email uses outlook and firefox will not let the page open once i log into the university login. It used to work, but now just shows a completely white tab. My email works fine in other browsers. Why?

    My University email uses outlook and firefox will not let the page open once i log into the university login. It used to work, but now just shows a completely white tab. My email works fine in other browsers. Why?

    Make sure that you haven't left a profiles.ini file.
    * http://kb.mozillazine.org/profiles.ini_file
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

Maybe you are looking for

  • Smart Album not so smart?

    Hi. A few months ago I upgraded from iPhoto to aperture. It's all rather confusing but I've been willing to overlook it because of the usefulness of aperture as an advanced photo editor. Now however all sorts of weird things are showing up. The Smart

  • Export param of report & FM

    Hi, we are developping Async RFC -XI-file ,so for that we need to schedule  an ABAP report in sender SAP R/3  to trigger FM  like REPORT Z_SEND_DATA_TO_XI. PARAMETERS: DEST LIKE RFCDES-RFCDEST DEFAULT '(RFC Destination you defined in SM59)'. <<your o

  • Any body have below mentioned document will u send it to me

    HR050 SAP HR Human Resources Essentials HR051 SAP HR Human Resources Essentials 1 HR052 SAP HR Human Resources Essentials 2 HR053 SAP HR Human Resources Essentials 3 HR100 SAP HR Essentials of Human Resources HR110 SAP HR Essentials of Payroll HR120

  • Email PO's

    Hi SAP Gurus, Is there not a way that we can set POs to e-mail as soon as they are saved? Thanks Anusha

  • MacBook Pro Presents a Grey Screen & Restarts Over and Over

    I just got my new 2.7Ghz i7 last tuesday and even after the first time I turned it on and completed updates, restarted, and I was just running safari and itunes, randomly a grey screen came up saying that I needed to restart the computer. I thought i