First Keystroke Ignored

Not sure if this should be posted here or within the OS thread, but as I first noticed this on Snow Leopard and it's also the case on Lion, I'll try here.
Whenever I return to my Macbook after a few moments absence (not long enough for screensaver or sleep etc) the first keystroke is always ignored. Often, indeed usually, this is in Google, so that the search is rendered meaningless.
It's not just Google though and not just safari. Does anyone know what causes this? Is there a simple fix?

HI Chris,
Not sure if the keyboard glitch is a result of the repair by Apple, but you could try resetting the PMU, instructions here http://support.apple.com/kb/HT1343. Read through this article all the way. Resetting the PRAM might do the trick first.
Did I get the right iMac?
Carolyn

Similar Messages

  • ValidationTextField in IE6 IE7 problem, 1st keystroke ignored

    hi,
    i have a very interesting problem with "ValidationTextField"
    in IE6 and IE7.
    the validation on textfiels starts at 2nd keystroke, the
    first keystroke in the field is ignored,
    if iset the values by javascript like
    $('theMovieTitle1').value = $('theNewText1').innerHTML;
    $('theMovieTitle2').value = 'Hallo ';
    $('theMovieTitle3').value = 'Hallo ÖÄÜ';
    $('movieDescription').value = 'Austria Österreich
    Fräulein ';
    hmm??
    you can see/test it here:
    http://www.startup-service.com/Spry/demos/formsvalidation/testvalidate.html
    thanks
    herbert

    I don't see that behaviour on your example in IE7 or Firefox.
    If i highlight the text in the field and then begin typing the
    validation occurs immediately
    Can you explain how you are seeing it so i can try to
    recreate?

  • First keystroke after idle has a slight delay

    So when I don't touch the keyboard or trackpad for about 5 seconds the first keystroke I make is delayed for about .5 secs which is annoying when recording in Ableton with the MacBook keyboard or when gaming. After the initial key press everything works fine until I don't touch the machine for 5 seconds again.
    I'm on the 2012 i7 quad core MacBook so performance isn't the issue. I'm guessing this is some power management thing?

    Hi! I have a similar trouble on my Macbook Air mid 2011! The first keystroke is ignored (as if my keyboad has fallen asleep)... Any ideas?

  • [Solved] Xorg + fluxbox first keystroke lost

    Hi,
    Recently I've noticed a pretty strange thing. I'm running Arch with fluxbox on it and when I change workspaces my first key press after change is lost (ex. in doesn't show in urxvt). I'm using xorg-server 1.12.1-2, fluxbox 1.3.2-1, vanilla kernel 3.4.0-rc4 (64bit). It's an asus k52j laptop if it helps. The only thing I've noticed is the xev output after the workspace change.
    That's the first keystroke
    KeymapNotify event, serial 36, synthetic NO, window 0x0,
    keys: 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    And shortly after the second
    KeyPress event, serial 36, synthetic NO, window 0x2400001,
    root 0x150, subw 0x0, time 1611281, (60,-19), root:(573,4),
    state 0x10, keycode 52 (keysym 0x7a, z), same_screen YES,
    XLookupString gives 1 bytes: (7a) "z"
    XmbLookupString gives 1 bytes: (7a) "z"
    XFilterEvent returns: False
    I've pressed the same key twice 'z'.
    Thanks for any help in advance,
    xartii
    Last edited by xartii (2012-05-15 21:48:16)

    Changing driver from evdev (the one with the missing first key stroke) to kbd, results in completly useless keyboard outputing strange characters. In console (runlevel 3), not a terminal in X ,everything works fine so I suppose it's not my kernel misconfiguration. Any other ideas?

  • Command Key has to be released and pressed each time, holding down command key for multiple commands ignoring all after first keystroke.  Have tried this in safe mode - still broken.

    This problem has just cropped up - pretty sure it's after the 10.7.3 upgrade.
    Scenario: I'm in pages and I'm doing a search. I need to find multiple instances of my search word.
    I hold down the command key and press the 'g' key - for find again. It works.
    While still holding down the command key - I hit the 'g' key again to do another find again. But instead of executing teh find again, hitting teh 'g' key the sdecond time types "g' over last search item found, acting as if teh command key was not still pessed.
    This is happening in DreamWeaver CS5.5, the latest Pages, and the latest BBEdit. Haven't checked all apps.
    This IS NOT a problem in the finder though - where command-tabbing brings up the app list properly, and tabs through while holding down teh command key and repeatedly hitting the tab key.
    I restarted in safe mode. Still a problem.
    First I cleaned the command key, then re-seating the key. I swapped keyboards, Still a problem.
    Did a PRAM reset, which didn't fix anything.
    I can't find any other post regarding this issue. Been using the mac for over 25 years and I've never seen this one.

    This turns out to be a problem with my KVM switcher. The USB port on the switcher for the keyboard is failing - hence the intermittent reaction to the command-key presses.
    I connected the keyboard directly to my mac and the problem was resolved - sorry I didn't check that before I posted this.

  • First keystroke missed/ignored

    I have an Intel iMac, 17 inch with built-in isight camera, in white. Since we had the DVD drive repaired by Apple a while ago, the computer very often misses the first input from either the keyboard or the mouse. It is most noticeable when inputting into the search box in Google/Safari, but is also occurs in MS Word etc.
    Its incidence with the DVD drive repair could of course be coincidence - but I do wonder?
    I have researched this fault on the internet and it does appear to be out there but so far I have not stumbled on a cure.
    I have just restored the iMac by doing a complete Erase/Install to clear out any possibility of rogue programs, and despite initial hopes, the problem is still there.
    I have of course swapped keyboards which has no effect whatsoever.
    Anyone out there know what this fault is and how it's cured?
    Many thanks
    Chris

    HI Chris,
    Not sure if the keyboard glitch is a result of the repair by Apple, but you could try resetting the PMU, instructions here http://support.apple.com/kb/HT1343. Read through this article all the way. Resetting the PRAM might do the trick first.
    Did I get the right iMac?
    Carolyn

  • First letter ignored in TextArea

    import java.awt.*;
    public class MyTextArea extends java.applet.Applet {
         TextField f1 = new TextField(20);
         TextField f2 = new TextField(20);
         TextArea ta = new TextArea(5, 50);
         public void init() {
              add(f1);
              add(f2);
              add(ta);
    When I tab into the TextArea diaplayed by running the above Applet, the first letter typed by me is ignored. But this does not happens when i click in the textarea and then type a letter!
    Also, the BackTab key doesn’t work in the TextArea. Why not?
    Can someone help?
    Many thanks

    guptamala,
    by default, the textarea keystroke is as follows:
    forward ctrl + TAB
    backward ctrl + shift + TAB
    so when you enter only TAB, I think it is a bug to allow to go into text area then ignore the first letter
    solution:
    a. if you follow default keystroke then you will be fine
    b. if you want to change the keystroke to TAB
    you can set new keystroke
    Set keystrokes = new TreeSet();
    keystrokes.add(AWTKeyStroke.getAWTKeyStroke("TAB"));
    ta.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, keystrokes);
    here is the working solution
    import java.awt.*;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.util.Set;
    import java.util.TreeSet;
    public class MyTextArea extends java.applet.Applet {
         TextField f1 = new TextField(20);
         TextField f2 = new TextField(20);
         TextArea ta = new TextArea(5, 30);
         public void init() {
              add(f1);
              add(f2);
              add(ta);
              Set keystrokes = new TreeSet();
              keystrokes.add(AWTKeyStroke.getAWTKeyStroke("TAB"));
              ta.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, keystrokes);
              requestFocus();
    Good luck

  • First key ignored Firmware update ?

    I must upgrade to Leopard in order to install the Firmware application Apple just put up to fix this problem on MacBooks/pros?? If so, that seems really unfair considering I have a $3000 computer where the first key is often ignored (if the computer sits idle for a while) and will not pay another $125 just to fix that problem and loose use of my $600 scanner and who knows what else?? Please tell me there's a better, easier and less expensive way.

    from what it looked like more people had the issue in leopard so they were tracing that first, also they may have not gotten many complaints until leo came out thus seeming to them like it was related.
    i have not heard of as much compatibility issues lately as there used to be so companies may be catching up.
    you can call and talk to a Customer service rep (gota ask for them) at apple and they may be able to help you (tech support wont be able to probably) and if not you can at least talk to some one that has a louder voice when they get complaints to be able to pass the info faster and farther.
    personally for me i had more issues when i started running the intel based machines than when i upgraded to leo so my experience with compatibility doesnt hurt my opinion of leo
    -matt

  • My keyboard has a lag on the first keystroke and then catches up

    I am running the latest Mavericks on my MacBook Pro which I purchased less than a year ago. 
    Now whenever I bring up a screen or try to change input fields, the keyboard is lags behind the rest of the machine, including mouse.
    This is aggravating but recent.
    Any suggestions?
    Paul

    I would first try resetting PRAM
    http://support.apple.com/kb/ht1379

  • Modifier keystrokes ignored at startup - 10.4.2

    Apologies if this has been discussed before but I've not found anyone with quite my problem.
    Running a Dual 2.7 G5 machine on 10.4.2 in a lab of 7 similar machines. This is the only one online though...
    Can't start it up in single user mode (needed for Applejack) which is fine for all the other 6 machines, also on 10.4.2
    Plus the startup time before the grey apple screen appears is long. At any rate, can't start up in single, verbose or even safe mode. Reckon it may have something to do with Open Firmware but I can't seem to find any mention of "Open Firmware" when I spotlight the mac or do a find.
    Any takers? It's driving me nuts.

    Aha, I just came across this:
    http://docs.info.apple.com/article.html?artnum=302001
    Specifically it says:
    Power Mac G5: Keyboard commands don't work during startup
    Normally, when your computer starts up, you can use certain keyboard shortcuts to tell the computer to start up from an optical disk, reset PRAM, start up in FireWire Target Disk mode, start up in verbose mode, and so forth.
    In some circumstances, a Power Mac G5 may no longer function as expected. If you find the computer isn't responding to any of these startup keystrokes, follow these steps to troubleshoot the issue.
    1. Disconnect all USB devices except your Apple keyboard and mouse. (Make sure the keyboard and mouse work correctly before you shut the computer down.) Test from this configuration to see if a USB device is interfering in any way.
    2. Make sure that the Open Firmware password is not enabled.
    3. Start up the computer and keep the power button held in until the Open Firmware screen appears. When you see the Open Firmware screen and prompt, type reset-nvram and press return to clear NVRAM. On the next line, type reset-all and press return to restart the computer.
    If the issues persist after trying all these steps, your computer may require service. Please contact your local Apple Retail Store or Apple Authorized Service Provider for further assistance.
    Writing from home which is why my gear below is different. Off to try this out tomorrow when I'm back in the studio.
    Will report if it fixes it.
    Regards.

  • First keystrokes not being recognized...?

    I have a brand new macbook and when I press a key sometimes it doesn't register. It is especially bad with the delete key. When I press it, I have to push it one time to get it to work and then delete what was needed. Should I send it back or take it to a genius? Hope it just gets better on its own?
    Thanks
    Joanna

    I have a similar problem where my keyboard doesn't recognize keystrokes, especially at high speeds, and most especially with the caps lock key. It's really annoying that I don't know how many times I have to push the caps lock key to get it to turn on, and basically means I have to stare at it to make sure the green light has come on before continuing typing. Also, it doesn't just happen when the computer's been asleep for a while, it's all the time.
    I've already installed the recent firmware update for keyboard - I was really excited about it maybe fixing the problem, but unfortunately the problem has persisted. Apple, please help!

  • First keystroke sometimes won't input

    I'm using an apple usb keyboard with my PB, and lately, for no apparent reason, the first letter or number I press won't result in any input. It's almost like the keyboard goes to sleep and I have to wake it by depressing a key before it will respond.
    I have not tested the built in keyboard on the PB, so I may try that, but I wanted to see if anyone else has had anything like this happen. I will also try a test to see if there is a certain amount of time that has to pass before it does it's sleep-like thing.
    thanks

    This is a known issue without a known solution. One thread discussing it is http://discussions.apple.com/thread.jspa?threadID=309807&start=0&tstart=0

  • First Keyboard Stroke Not Working

    Hi, this is an issue I believe was in play last year. When I first type on my internal keyboard the first keystroke does not appear. For example, if I am typing an email and type "and" it will appear as "nd". This behavior is apparent in all applications and not key specific. After I have typed a few letters the problem goes away. I think this problem was fixed by a software update by Apple in the past but it has resurfaced and is annoying. Would a PRAM reset or some other fix help? Any ideas? Incidentally, this problem has resurfaced for me using my MBP's internal keyboard. I normally use an external keyboard at home and the problem only resurfaced now that I am traveling on vacation without the external keyboard.
    Mahalo (thanks)
    Ken

    Hi, Ken. How about updating your OS to 10.4.11 and seeing whether the problem goes away?

  • Macbook Pro Retina keyboard missing keystrokes (spontaneously)

    I notice that when I type on my Macbook Pro Retina, once in a while (it comes in waves), some of the keys stop registering.
    I suspect it's not a mechanical hardware malfunction, as the keys start working a few minutes later fully normally (I can again type as fast as possible).
    It's as if some software function takes priority over my keys registering, and the keys can't keep up with being registered by the computer.
    Anyone else has a similar issue?  It's a bit odd.  Anything that can be done to fix this?
    I just had this issue when typing an email in Mail.
    I jumped over to TextEdit and it was still not working there (so it's not app specific).  I tried typing a sentence and got this:  "I st htoenms by thatsulbewsoem"
    After about 5 minutes it works again totally fine.
    Z.

    Sadly, I too am having this problem, and did NOT have the issue before updating to Mavericks.
    For me, it's always the first keystroke when filiing out any form in a webpage. For me, the keystroke shows up, but is instantly highlighted, as if selected, then the next keystroke wipes it out by typing over it. Talk about an interuption while typing..
    An issue of this proportion is completely unacceptable. As a web developer literally LIVING on my macbooks, this is something that should never happen and needs to be fixed. I can't even see having this type of issue on an old Acer or HP or some other junky computer, but to be having this issue on my Macs.. No, unexceptable.
    I expect and deserve more than this, regardless of the price paid (which obviously was not cheap...)

  • How to trap the first key?

    Hello World,
    I am using JTable in that I am using custom TextField as a Editor Component. Now I want to trap the first key pressed in the textfield.
    I am using public boolean editCellAt(int row,int column,EventObject e) method. In this method I get the value of �e� as a null if I press any key. So I can not trap the event here.
    The next try is to putting KeyListener in textfield class, this is also not working because it gets called after EditCellAt method.
    I tried to override the processKeyBinding() method but this seems to trap all the key pressed and not allow me to navigate also.
    Can anybody provide me the solution how I can trap the first key only.
    Thanks in advance,
    Sachin Dare.

    Hello World,
    I am using JTable in that I am using custom TextField
    as a Editor Component. Now I want to trap the first
    key pressed in the textfield.what do you want it for?
    [.. usual l aproaches snipped ]
    The reason this is not working is that JTable uses a very uncommon way to route this first keyEvent: it comes via Jtable.processKeyBindings which first tries to start the edit with it (buggily "forgetting" to pass the keyEvent along...) and if this started the edit it will pass both keyStroke and keyEvent to the editorComponent's processKeyBindings. At his time the editorComponent is part of the container hierarchy.
    So a possible solution (did not try it, though) might be to have a ComponentListener on the editorComponent, set a flag when being added to the table and reset the flag when receiving the first KeyStroke in proocessKeyBinding after the componentEvent. Alternatively, you might try to set/reset the flag as a clientProperty in table.processKeyBindings.
    Greetings
    Jeanette

Maybe you are looking for

  • How to reprocess delta records during subsequent update of data targets

    Hi, I have an ODS which sends in delta records to a cube above it. Now there is a data load, happening monthy from a flat file, which was successful upto the ODS, but failed in the cube due to one invalid record. How do I reprocess this data load aft

  • To get f4 search help in Abap Web dynpro

    Hi web Dynpro Experts, i want to achieve XK03 Tcode payment mode search help functionality  in abap webdynpro,in clearly When i press f4 i payment mode input field a view should open with  different payment modes like a.ebanking payment method, b.eba

  • Using Bluetooth on a C8180 All-in-One to print from Mac OS-X

    Dear folks, I have a new iMac and would like to be able to print from it to my 8180 AiO using bluetooth.  My Mac sees the printer (it's paired), and the Mac has the latest print driver installed, and I've verified the bluetooth setup on the 8180,  bu

  • HT4528 help unlock my iphone 4s n

    hello help me for unlock iphone 4s plz... iphone 4s used with Verizon

  • NVidea 8600 GT - MA897D/A

    My MacBook Pro got the nVidea flu. Because it's 4 years and 3 months Apple has not agreed to apply "Good Will" (according to Gravis store). Doesn't sound like premium customer orientation to me. Any experience with that? or better: any idea that migh