Strange behavior with the tab key and multiple users

Hello,
I'm stuck on this problem and none of the usual trouble-shooting techniques have yielded results, so perhaps someone will point me the right direction.
I have an Intel iMac running 10.3.9 with two user accounts, and in one of the accounts the tab key fails to advance the cursor from field to field in any application, be it a browser, mail client, etc. The tab key works otherwise, I can switch between applications using apple tab, for instance. The other user account works fine. The keyboard & Mouse preferences are identical on both user accounts. In fact, after creating a new user account it too had no tabbing from field to field either, which would seem to indicate that it is not a problem in an individual account. Repairing the permissions did not help, and even a recent archive and install failed to change this. Anyone know where to look for an answer? Thanks in advance...
iMac 2GHz Intel Core 2 Duo Mac OS X (10.4.9)

I did a wholesale replacement of the preferences folder from the working account to the non-working one, and after going through the welcome screens and re-setting a variety of preferences (setting up mail.app again, etc...), the tab key is functioning as expected in all applications. Thanks!

Similar Messages

  • I get a strange behavior of the tab bar and of the location bar in Firefox 29.0 for Mac.

    I have just installed Firefox 29.0 for Mac.
    I get a strange behavior of the tab bar and of the location bar with this new version.
    Instead of the location bar, I get two rows of symbols. And it's impossible to write anything in the location bar.
    (I'd like to add a screenshot, but I cannot find a way to do it.)

    Thank you for your tip.
    I found the culprit: it was an extension called RSS Icon 1.0.6.
    I removed it and now Firefox 29.0 is working perfectly.
    Now I'll have to find a replacement for that extension.
    Thank you once again. Your tip was essential.

  • KeyEvents with the TAB Key

    Hey All,
    I have a small progam with a small problem. My program is an applet with numerous textfields and I have implemented the KeyEvents event listener. What I want to have happened when I press the "Tab Key" is the cursor move from one tab to another, but when it goes to the next tab it clears out the text that is currently in the textfield. Take a look at my code segment that is giving me the problem.
    public void keyPressed(KeyEvent e)
    if(NameField == e.getSource())
              if(e.getKeyCode() == KeyEvent.VK_TAB)
                   SalaryField.setText(" ");
    I know that is works if I replace "VK_TAB" with something else like "VK_A". "NameField" and "SalaryField" are the names of mt textfields. I am currently using Java SDK 1.3.1 to program in java program, but my browser uses JVM/Runtime Enviornment 1.4.1. When I run it with my broswer nothing happens when I press tab and some for the program that I am using to progam in. I did a search in the forum and came up with I have above, but still cannot it to work. When I read APIs on 1.4.1 and 1.3.1 that both said that
    "Aside from those keys that are defined by the Java language (VK_ENTER, VK_BACK_SPACE, and VK_TAB), do not rely on the values of the VK_ constants. Sun reserves the right to change these values as needed to accomodate a wider range of keyboards in the future."
    What is going on? How can I solve this problem?
    Thanks,
    Iceman
    PS:
    My Interface is swing

    Hey All,
    Thanks for the help I got to work when I ran it with my programming program, but when I run it in a browser using the current JVM the tab key does not work. What is wrong now? Or how am I to use FocusListener now, I tried to use the getOppositeComponent(, my complier says that it is not a method of FocusListener. Even though java says in the docmentation that it is. Can I get some more help here. The questions again is How can I tab in a applet?
    Later,
    Iceman

  • What's with the tab key in the new version of Pages

    In the previous version I could have a list and was able to tab within a line in that list and it would recognize the tabs. Now, if you are in line, shifts the position of the list level.
    Version 2
    1. My list line could tab to here $50.00
    2. Second line
    3. and so on.
    Version 3
    a. My list line (shifts the list if you click the tab key) can't add anything
    2. Second line
    3. and so on.
    NOTE: the a. line under version 3 is indented when the tab key is clicked. If I do this in this reply box, this line won't even show up. That's why I edited my post.
    Or do I have something buggy when shifting from 2 to 3. (I already threw 2 away.)
    Message was edited by: darrenv
    Message was edited by: darrenv

    The fn key is on the portables, not the stand-alone keyboards. It allows for a smaller/less keys keyboard & still lets you do things like forward delete by holding down the fn key & pressing delete.

  • Moowing focus with the tab key (swing)

    Hi. I have a JFrame with 4 text areas in. I want to be able to "hop" to the next text area by pressing the tab key. Most internet pages says this is default, but when I press tab, I get a tab space inside the text area I'm in.. Any ideas on how to do this? (i use Java 1.5)

    HashSet focusForward = new HashSet();
    HashSet focusBackward = new HashSet();
    focusForward.add(AWTKeyStroke.getAWTKeyStroke(KeyEvent.VK_TAB,0));
    focusBackward.add(AWTKeyStroke.getAWTKeyStroke(KeyEvent.VK_TAB,InputEvent.SHIFT_DOWN_MASK));
        myTextArea.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,focusForward);
    myTextArea.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS,focusBackward);

  • KeyStrokes with the Tab Key

    Hi,
    I am making a Desktop Application using a JDesktopPane. I want to allow my users to cycle between internal frames quickly by pressing CTRL-TAB. I created the Action object and set its accelerator value, but the action refuses to trigger when i press CTRL-TAB. I have boiled the problem down to the following sample application. This is using jdk 1.5.0, i haven't tried other versions.
    I create three actions, CTRL-ENTER, CTRL-TAB, and CTRL-SPACE. All three VK_ keys are listed in the javadoc for the KeyStroke.getKeyStroke(int keyCode,int modifiers) method.
    Here is the sample application
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class MyTest extends JFrame
       public MyTest()
          super( "My Test" );
          Action enter_action = new MyAction( "Enter" );
          enter_action.putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke( KeyEvent.VK_ENTER, InputEvent.CTRL_DOWN_MASK ) );
          Action tab_action = new MyAction( "Tab" );
          tab_action.putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke( KeyEvent.VK_TAB, InputEvent.CTRL_DOWN_MASK ) );
          Action space_action = new MyAction( "Space" );
          space_action.putValue( Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke( KeyEvent.VK_SPACE, InputEvent.CTRL_DOWN_MASK ) );
          JMenuBar menu_bar = new JMenuBar();
          JMenu menu = new JMenu( "My Menu" );
          menu.add( enter_action );
          menu.add( tab_action );
          menu.add( space_action );
          menu_bar.add( menu );
          this.setJMenuBar( menu_bar );
       public static void main( String[] args )
          MyTest my_desk = new MyTest();
          my_desk.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
          my_desk.setSize( 600, 600 );
          my_desk.setVisible( true );
       private static class MyAction extends AbstractAction
          public MyAction( String name )
          {  super( name );  }
          public void actionPerformed( ActionEvent e )
          {  System.out.println( this.getValue( Action.NAME ) + " Performed" );  }
    }Why is the CTRL-TAB accelerator not working? Both the other actions work fine. The action fires if you choose the menu item, but not if you press the accelerator. Is this a bug with 1.5?
    Thanks for any help,
    Reg

    Boy this road looks familiar.
    If the objects are on the same panel navigation comes free.
    Alternatively you can create an input map and action map.
    This is how I solved keystroke issues in my project
    for a component c you can use
    c.getInputMap() and
    c.getActionMap()
    In the following example I modified a text editing component to undo the meaning of + - * and /
    and replace it with specialized actions
    hope this helps
        public void mapKeyStrokes(InputMap im, ActionMap am) {
            im.remove(KeyStroke.getKeyStroke('+'));
            im.remove(KeyStroke.getKeyStroke('-'));
            im.remove(KeyStroke.getKeyStroke('*'));
            im.remove(KeyStroke.getKeyStroke('/'));
            im.remove(KeyStroke.getKeyStroke('%'));
            im.put(KeyStroke.getKeyStroke('+'),"add");
            im.put(KeyStroke.getKeyStroke('-'),"sub");
            im.put(KeyStroke.getKeyStroke('*'),"mpy");
            im.put(KeyStroke.getKeyStroke('/'),"div");
            im.put(KeyStroke.getKeyStroke('%'),"percent");
            im.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER,0),"enter");
            im.put(KeyStroke.getKeyStroke(KeyEvent.VK_ADD,0),"add");
            im.put(KeyStroke.getKeyStroke(KeyEvent.VK_SUBTRACT,0),"sub");
            im.put(KeyStroke.getKeyStroke(KeyEvent.VK_MULTIPLY,0),"mpy");
            im.put(KeyStroke.getKeyStroke(KeyEvent.VK_DIVIDE,0),"div");
            am.put("enter",fixedActions[13]);
            am.put("add",fixedActions[8]);
            am.put("sub",fixedActions[3]);
            am.put("mpy",fixedActions[2]);
            am.put("div",fixedActions[1]);
            am.put("percent",tabbedActions[0][1]);
        }

  • Problems with the alt key and numbers, please help major issue

    All of a sudden I am unable to use the alt key with any numbers, meaning I can't create hashes (alt 3) and bullets (alt 8), and others that I haven't missed yet. I've tried two keyboards, one wireless and one wired but to no avail. It seems to work fine for everything except 3 through 9.
    I found somebody with the same issue beforehand:
    *I have finally tracked the problem down to a problem preference file, namely this one:*
    com.apple.symbolichotkeys.plist
    *I have no idea what it's supposed to do, but it wasn't doing it right.*
    But even still, it made no sense to me, can anybody help me? This is an issue that's been disrupting everything I do on my Mac for a few days now, and not found the issue as yet.

    Feel a bit silly now! Just sorted it myself, had a look around my hard drive, and deleted the com.apple.symbolichotkeys.plist file, and restarted, when I started up and tested it my ¡€#¢∞§¶•ªº keyboard alt tab seemed to work!
    For future reference, just do this and restart afterwards:
    [YourHardDrive]>>Users>>[YourUserName]>>>Library>>>Preferences>>>com.apple.symbo lichotkeys.plist>>>Delete that>>>Restart your Mac and you've fixed it.
    Cheers anyway!

  • When will it be possible to navigate in the Calendar's big and small day panes with the arrow keys and PgUp/Dwn?

    Since I have difficulties working with the mouse (as a lot of people have), it would be nice if I can use the keyboard for as much as possible when working with applications on the computer. I frequently use Tab, Ctrl-Tab, PgUp/Dwn, Alt-<menu-item or key-to-accomplish-something> etc. Lightning could be more user friendly in that respect.
    This way of designing the user interface should, in my opinion, be applied as much as possible. And it shouldn't interfere with - but complement - other ways of navigating in applications, such as by the mouse, scroll bars etc.

    When a developer or several find the time to fix it. You can keep an eye on https://bugzilla.mozilla.org/show_bug.cgi?id=472448 and https://bugzilla.mozilla.org/show_bug.cgi?id=431076 for current status.

  • Premiere Pro CS5.5 -very strange issue with the color tones and Preview-

    I deal with a very strange and not usual problem in Premiere Pro CS5.5 (also the version CS5). What I try to do is just a simple color correction. The problem occurs when I try to use Three Way Color Corrector but it happens with Fast Color Corrector also.
    When applying the Three-Way Color Correction and without changing anything else (just applying), can be seen in the preview of the soft how sudden changes in color tones. For example, the gray tone becomes a little more green, but also can be seen very easy a change in the other color tones too. In fact even RGB Parade show the same thing. This is very, very strange and unacceptable and saw that it happens when trying to use Colorista II too.
    I tried the same thing in Sony Vegas Pro 11 and I downloaded the trial version of Edius 6 to convince me if the same thing happens. Not! In Sony Vegas and Edius everything is working correctly, I have not experienced these problems in the preview's of this 2 others softs.
    This issue is very annoying because every possible color correction is based on what we see in the preview and if in this preview the tones are seen altered realize that can not make a decent color correction. So what happens here?!? I uploaded a small video demonstration to see very clearly about what I'm talking. You can see in the next link: http://vimeo.com/35317616

    Yes Jim, you're right. No changes in the scopes when one just apply RGB Curves, Fast Color Corrector, RGB Color Corrector  or the Three way Color Corrector (last three thanks to the new update 6.03). I already wrote that Adobe team has been able to fix this bug for some of the tools/effects.
    But Brightness&Contrast? Change Color? Color Balance? Levels? MBLooks? Twixtor? Colorista II? Does it seem normally that all scopes or just one of them jump when you just apply one of these effects/tools? Not to say that in some situations even the tones change (especially in shadows&midtones).
    You say this is something "very minimal". I say it is not so. I don't find normally to make a very detalied CC with Three way Color Corrector and then when applying Colorista/MBLooks, for example, the scopes jump and inclusively some tones may be influenced. And I left clear examples in this topic where you can see that this is possible. I don't know if this is "very minimal" or not, but is really so impossible to edit in Premiere without this "very minimal" issue?!? How can it be possible in other softs (Edius, Media Composer, Vegas Pro) and in Premiere not?!?
    One more thing: many of us use intermediate codecs in the editing process. Do you find normally that a AVCHD video have the lumninance at approximately 110IRE, to export it directly to Cineform and then import it in Premiere, and the waveform shows the luminance at 100IRE?!? How is this possible?!? So the AVCHD video have a 110IRE luminance, you convert this video to Cineform without changing anything, and then this Cineform video have the luminance at 100IRE?!? And anyone can verify this example.
    So, how can one trust in this soft?!?

  • Moving the Focus with the TAB key in a JTextArea Component

    Dear Friends,
    I have exhausted all options of moving focus from JTextArea to next component. I have also tried all suggestions available in this forum. But i'm not able to solve my problem. Can any one help me.
    Thanx in advance.

    I had the same problem before. Here is what i did.
    JTextArea txtArea = new JTextArea(2,15);
    Set forwardTraversalKeys = new HashSet();     
    forwardTraversalKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0));          
    txtArea.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,forwardTraversalKeys);          
    Set backwardTraversalKeys = new HashSet();          
    backwardTraversalKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_TAB, InputEvent.SHIFT_MASK));          
    txtArea.setFocusTraversalKeys( KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, backwardTraversalKeys);
    JScrollPane scrollPane = new JScrollPane(
         txtArea,
            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
            JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    // the scrollbar of the JScrollPane is focusable that's why it requires
    // another TAB key to transfer the focus.
    scrollPane.getVerticalScrollBar().setFocusable(false);

  • The event library and multiple users in the classroom

    Is there any way I can stop the event library loading old footage or footage from another project in imovie. Is there any way i can have 3 or 4 movies on the go in separate files.
    I have ten macbooks for my class of thrity kids. We have two users on the computer Admin and Student. All students use the student side, every time imovie opens it gets old footage and events from iphoto and by the end of each term there is 8 to 10 gigs of footage on the go at any one time. imovie HD allowed save, file open and movement of movies. imovie 08/09 seems brilliant for snow boarders and you tubers but not the classroom. Really we would love an editing package that allows attachment of camera and work for a couple of weeks on a project while others do the same thing on the same mac. Please don't suggest multiple users we have over 200 macs and 600 students.

    Without multiuser, the only of having an exclusive event library for each student would be either external drive, or a blank disk image to store iMovie events. I can imagine a large network drive that has 50GB size disk images for each students. You mount your image to work with your footage.
    By the way you can move event library to other drive within iMovie, so you can back up and disconnect external drive to unclutter event library.

  • Problems with 1 icloud account and multiple users.

    We have multiple users all on 1 icloud so we can share apps but also see what people have installed and because IT control the password its upto us what apps get installed. So in that sense this was a good idea. The problem we are having is that the iphone users photos, messages and other things are becoming available on other iphones on this 1 icloud account. So for example one user went on her photos to discover someone elses photos was in their and then also had messages from a contact who only her manager has (also one of the icloud users)
    Is there any settings we could change to keep the 1 icloud acount but make it so peoples photos and messages dont sync.

    Yes, you can turn off photos in icloud. (settings - icloud- photos)
    You can also allow users to use their own apple id's for imessages and facetime. Unlike icloud those can be changed any time, so that does not present security problem. Settings -messages and settings- facetime.
    If you dead set on using same apple id, you can make sure that every user only has their phone number checked in messages, so everyone has to go to settings- messages- send and receive and uncheck apple id.

  • Permissioning problems with TimeCapsule AFP share and multiple users

    Hi,
    I am currently sharing my TimeCapsule filesystem (guest perms) as AFP, I have it automounting via automounter. Problem is that whoever hit's the automounter dir first is marked as the owner of all the shared files, other users then cannot delete/modify them (i want the share completely world read/writeable). The mount_afp command does not seem to support the relevant fmask/dmask params that mount_nfs does (which would cause the mount to be mounted with consistent ownership.)
    So..
    1. I presume NFS is not supported (boo!)
    2. Does anyone else have this working? I would imagine that I should also be able to get this working through group permissions, but for the same reason i cannot force automounter to mount the filesystem with the user/group ownership I want.
    thoughts?suggestions?
    Thanks
    Liam
    P.S. I could also try SMB but playing movies on Frontrow off a networked SMB filesystem is usually poor (compared to NFS anyway)

    Yes, you can turn off photos in icloud. (settings - icloud- photos)
    You can also allow users to use their own apple id's for imessages and facetime. Unlike icloud those can be changed any time, so that does not present security problem. Settings -messages and settings- facetime.
    If you dead set on using same apple id, you can make sure that every user only has their phone number checked in messages, so everyone has to go to settings- messages- send and receive and uncheck apple id.

  • Issue with the shortcut keys and actions

    Hello:
    I installed Photoshop CS6 without a hitch and it runs fine.  After the install is asked me if it had to copy yhe settings of my Photoshop CD5, I cliked "yes" and ity did.  I had my workspace and so on.  However when it copied the keyboard shortcuts, it seems it did not felete the old ones (I replaced several one's with one's of my own.  Now, when I press a shortcut the old one tries to run, sometimes with dire results.  The shortcut menu shows mine where they should be.  I treid to remove them and re-apply them, no result.  In the presets it shows my set.  Any ideas ??
    I also found no way (yet) to move my actions.
    Any help would be appreciated.
    Andre

    I also found no way (yet) to move my actions.
    If you have ever saved them just copy the atn-files to the proper folder (Presets > Actions) and they should become available in the Actions Panel’s pop-up menu after restarting the application.

  • On Mac, need to navigate to first google search listing by keystroke, the tab key works sometimesand sometimes the down arrow works, nothing works consistently

    If I do a search using the google search engine, say of a phone number like (530) 335-5414 it results in a page with about 10 to 15 listing. Here is what the page looks like
    https://www.google.com/?gws_rd=ssl#q=%28530%29%20335-5414
    I am on a mac and I need to find a keyboard command to get me reliably to select the first listing . When the caret appears next to the listing I can press the enter key to open the underlying hyperlink.
    I have had success doing this with the tab key and sometimes it works almost 8 times in a row. Then I sometimes use the down arrow key and it occasionally gets me there. IS THERE A RELIABLE KEYBOARD NAVIGATION TO THE FIRST LISTING ON A GOOGLE SEARCH RESULT PAGE. I don't understand why my keyboard only works occasionally to navigate in this way . This is very important for me to do this and maybe someone out there knows how to get to select the first listing on a page by keyboard that works.
    Thank you very much for you

    I've called the big guys to help you. Good luck.

Maybe you are looking for

  • Error #1009 in my Platform Game! Please Help!!!

    In my basic platform game I have a "hero" that can walk and jump on the "ground." There is also a door to the next scene, which is the next level.The first scene works fine, but "TypeError: Error #1006: value is not a function. at Charles3_fla::MainT

  • Printing problem with orion -ERP software in hp 7000

    Hi, i have a hp 7000 printer ,printing well with accounting software-focus but its not responding with erp software orin-ifotech, please give me the soltuion

  • WD Java - Type does not exists

    Hi folks, we use the RFC Import in WebDynpro JAVA and import a function module of name like /tyed/myFunction where /tyed/ is a namespace. when running that application we get an error on a structure which is of name like /tyed/myStructure and in JAVA

  • How do i add captions to my photos in my pages report?

    Wrote on pages, dragged in photos, but want to add small caption under the pictures... Please help asap! Thanks!

  • 10g vs 11g xquery performance with XBRL

    Finally,I set up 11g on small notebook with 1G memory. The result was impresive compared to 10g ,but I need more than that. I used this query generating 761 rows for testing SELECT c.seqno,xt.ns,xt.name,nvl(xt.lang,'na') as lang,xt.unit,xt.decimals,