Keyboard input delayed in Siebel application // letters lost while typing

Hi all,
We have a strange problem on a client computer. While working with Siebel, keyboard input is extremely delayed. When typing a word or a phrase, it takes some seconds to appear in the corresponding field, and also some chars are just lost if one is typing too fast. This does only happen in Siebel - all other applications are OK.
I have seen this already some months ago, but don't remember the cause.
Web Client 7.8.2.14 QF0E76
Win XP SP3 IE8
Did anyone ever experience this? Might be some specific driver issue or IE security update or whatever?
Thanks
Benny

Thanks Wilson for your input, unfortunately resetting browser settings and stuff like this does not help.
In the meantime I have done more research on this and found something interesting. The dropped characters / missing keystrokes do only appear when typing in Siebel popup applets. We do NEVER lose any keystroke when typing in a normal form or list applet. I have run a little test with a vanilla SRF file and a VBS Script.
I placed a VBS file on my desktop which will use SendKeys to simulate typing the word "Siebel" several times.
The source code of the VBS file is:
>
Option Explicit
Dim WshShell, c
Set WshShell = CreateObject("WScript.Shell")
c=0
WScript.Sleep 5000
Do While c < 5
WshShell.SendKeys "S"
WScript.Sleep 70
WshShell.SendKeys "i"
WScript.Sleep 40
WshShell.SendKeys "e"
WScript.Sleep 30
WshShell.SendKeys "b"
WScript.Sleep 90
WshShell.SendKeys "e"
WScript.Sleep 120
WshShell.SendKeys "l"
WScript.Sleep 70
WshShell.SendKeys " "
WScript.Sleep 90
c = c + 1
Loop
WScript.Quitwhen I click this script I have 5 seconds to switch to Siebel and point the cursor into a text field.
-> When this text field is on a form applet, it correctly writes "Siebel Siebel Siebel Siebel Siebel"
-> When this field is on a MVG applet, it sometimes drops keystrokes like "Siebel Siel iebel Siebel Sibel"
what the hell could be the problem ??????
Could someone try this in another environment??
We are on 7.8.2.14 QF0E76 ...

Similar Messages

  • HT201178 when using apple bluetooth keyboard with iPad, hitting the enter/return key while typing in iMessage only adds another line not 'send' the message? is there a setting to change that somewhere?

    when using apple bluetooth keyboard with iPad, hitting the enter/return key while typing in iMessage only adds another line not 'send' the message? is there a setting to change that somewhere?

    Everywhere that I've checked it is not possible to do this. I would like to even do this using the vkb. I hate having to stretch my thumb all the way up just to send a message. It's messaging, not a report or email. Seems backwards. Hopefully some day Apple can add this option.

  • Keyboard input delay Flex/AIR

    I've build an AIR desktop app that uses an USB barcode scanner. To capture the token provided by the barcode scanner an input field is used.
    When testing the barcode input was only partially captured by the scanner. This was caused by the barcode scanner's input coming in the fast. Increasing the key stroke delay of the barcode scanner (config tool from motorola) solved the problem however this is not ideal.
    Does anyone has experience with this type of problems? What is an approach to solve this? Maybe by writing an Java compagnion app that captures the keyboard input?

    I just ran into this same problem. Our users are scanning barcodes from various labels using various types of scanners (changing the delay using scanner software wasn't an option). We also have to allow them to scan to a TextInput within a DataGrid, which created even more problems. There were 2 very interesting things I learned in coming up with a solution for this one:
    1. As mentioned previously, the scanner inputs the data so quickly that the enter key event is often processed before the change event for the text. I tried several solutions (like trying to force the change event before the enter key is processed), but learned that the best solution was just to add the delay as mentioned in previous posts.
    2. When adding to a DataGrid control, I learned that both the DataGrid's & the TextInput's key down events are fired by the same SystemManager event. Though you can override the TextInput's keyDownHandler, you can't override the DataGrid's because it's a private method. So, even though my delay was being processed in the TextInput, the DataGrid was forcing control away from it and moving to the next item in the grid. To get around this one, I had to stop propagation of the event from the TextInput, then re-start the DataGrid's event once the delay was complete. I also had to process a focus-out event to get it to move to the next item in the DataGrid.
    Here's the code I used inside a custom TextInput control to handle processing both stand-alone and inside a DataGrid:
    override protected function keyDownHandler(event:KeyboardEvent):void
          // If the enter key was pressed, then we need to add a delay.
          // Barcode scanners quite often process the enter key before the TextInput
          // control has time to finish processing all the text. (e.g., Instead of
          // getting 12345 as a text entry, you could get 123 or 1234.)
          if (event.charCode == Keyboard.ENTER)
               // If this is the first time we've processed the enter key, we need to
               // add the delay.
               if (_keyboardEvent == null)
               _keyboardEvent = new KeyboardEvent(event.type, event.bubbles,
               event.cancelable, event.charCode, event.keyCode, event.keyLocation,
               event.ctrlKey, event.altKey, event.shiftKey);
               event.stopImmediatePropagation();
               barcodeTimer(_keyboardEvent);
                          return;
               // If the enter key is pressed while we are still in the delay, ignore
               // it.
               else if (_keyboardEvent != null && _keyboardEvent != event)
                         return;
               // If the delay is complete, then we need to restart events related to
               // the enter key so the control is handled properly.
               else
                    super.keyDownHandler(event);
                    // If the TextInput is inside a DataGrid, then we need to dispatch the
                    // DataGrid's key down event. We also need to make sure the proper
                    // focus change happens (since this was stopped in the original event
                    // propagation).
                    if (parent != null && parent.parent != null &&
               parent.parent is mx.controls.DataGrid)
               parent.parent.dispatchEvent(event);
               dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true,
                              false, null, event.shiftKey, Keyboard.TAB));
            _keyboardEvent = null;
                    return;
          super.keyDownHandler(event);
    * This is a copy of the keyboard event to be processed once the barcode
    * delay is complete.
    private var _keyboardEvent:KeyboardEvent = null;
    * This method launches a timer of sufficient length to allow barcode
    * scanner text to be processed before it re-launches the keyboard event.
    * @param event This is the key-down event to be restarted once the timer is
    * complete.
    private function barcodeTimer(event:KeyboardEvent):void
          var t:Timer = new Timer(30, 1); // 30 ms
       t.addEventListener(TimerEvent.TIMER,
               function():void
               keyDownHandler(event);
       t.start();

  • Letters displaced while typing

    I have a new MacBook Pro 13".  When typing messages in emails and on Facebook the letters sometimes skip spontaneously to another part of the message even when I am careful not to touch the track pad while typing.  I had an older Macbook and this happened because the battery warped;  it was situated beneath the trackpad inside the case and sent false signals.  But this computer is new.  What is happening?

    I really do suspect you are either touching the trackpad or accidently hitting keys that is moving the cursor to another part of the page/area you are typing in.
    One thing may be you have Tap to Click turned on and just a simple tap anywhere on the traclpad will cause the cursor to select whatever is under it
    I do this on a normal keyboard, sometimes. I've even shut the computer down, on Windows, accidently by hitting the control or Windows key and some other combo that opens the start menu and selects Shut Down or Restart.
    Try to be more careful for the next few hours or days and see if it still happens.
    Open a text editor or word processing program and type in a bunch of stuff to see if it happens.

  • Random letters appear while typing, X60 WinXP

    Greetings all!
    A colleague of mine is using a X60 with an Ultrabase at his office, and he's experiencing some weird errors that I can't figure out. It's not critical in any way, but rather a constant annoyance.
    Every now and then while he's typing some text in whatever application, a random letter will appear and bugger up the spelling of the words. This happens all the time, more or less every 2-3 minutes. It does not matter if he's using a USB-keyboard attached to the Ultrabase, or the keyboard on the X60 itself. I reckoned it might be a faulty keyboard, but seing as this happens on every keyboard I'm not so sure about this.
    Example:
    "My colleague types this"
    but what appears on-screen is for instance:
    "My colleague trypes this." (an "r" mysteriously appeared)
    All these spelling errors are frustrating, as they happen all the time. At least he's forced to spell check all his documents, but I can see that this is annoying in the long run.
    What can cause this kind of behavior? I was hoping I'd avoid a reinstall of the computer. I reckon I'll install another disk, boot it up,  and see if the errors still persist. If so, I reckon it's hardware related.
    If anyone's experienced anything similiar, please let me know :-)
    Regards
    Bob Lydan

    Sometimes Norton is a case of cure being worse than the malady.
    Try NOD 32. They offer free download for a 30 days fully functional trial version. You'll need to disbale Norton before you install anothetr product, other the two might fight each other and virtually disable your PC.
    I have copied their link below.
    http://www.eset.com/download/free_trial_download_i​nt.php
    Good luck.
    Sushil
    ThinkPad T61, (7658CTO), T7500, Integrated Graphics, 320 GB HDD, 3 GB RAM, 1 GB Intel Turbo Memory, Vista (32 bit) Business

  • Just started with NetBeans IDE, need to capture all keyboard input!

    Hello,
    I discovered that I can only capture keyboard events when my GUI application has focus. Ok, but I need a functionality that can capture all keyboard input, even if my application runs in the background or in the system tray.
    How can I achieve that?
    Regards,
    Mirza

    I know...sorry, didn't mean to imply otherwise.Don't worry about it; I wasn't offended. (I didn't think that that was what you were tying to do.) I was trying to (subtly) take this a different direction. (Was going to write something Solaris specific or perhaps something in ASM that would effectively do what the O/P wanted. Seeing as how Key Loggers only serve one practical purpose - as far as I know - I just wanted to give him code that he could do nothing with.)

  • Disable most of keyboard input

    Would it be possible with a pure Java code only to disable normal use of keyboard input (like have the application just eat every keystroke except the ESC key for example)?
    I'm most interested in using this for disabling screen capture key sequences (such as CTRL-Alt-PrtScr in Windows) but also for disabling many other key sequences such as CTRL-Alt-Del.
    Thanks.

    This would be too insecure so it's not possible. Imagine if an applet on a webpage could intercept all your keyboard input and steal all your passwords as you log into sites !

  • Disable Keyboard Input

    Hi folks,
    May I know how to disable/ignore keyboard input in a Swing application ? Of course, just for a short period and need to resume afterward. Thanks a lot.
    KC

    Fairly straight forward. Implement the KeyListener interface. Make your keyPresses, keyReleased and keyTyped methods consume the event. If you want to make this dependent on some condition, then set a boolean indicator and check it each time the KeyListener methods are called.

  • Can't log in; keyboard input screwy

    All of a sudden, as I try to log in to my intel-based iMac running 10.5.8, the keyboard input doesn't work: some letters don't seem to input at all, while for others, striking one key results in two dots showing up in the log-in box. I get the same result from two different keyboards, so I don't think it's a keyboard issue. Any ideas?

    Hello. Am running Snow Leopard on a new iMac and have a similar problem. While working normally, without even having system preferences open, the mouse stopped responded normally and open programs started to close and even though the keyboard input icon showed the US keyboard, the input was from a symbols keyboard with mostly Greek characters.
    I made the mistake of shutting the machine down and now, instead of opening up to a window showing my three user choices, it shows only one of the three. It does show the keyboard icon and allows me to click and change, but the input remains in symbols even if I have chosen the US, Swiss French or Turkish input modes.
    So I cannot log in.
    Shutting down, unplugging the keyboard, etc. does not help.
    Can anyone give me a steer?
    Thanks.

  • Keyboard input lost on desktop actions

    If I change the name of a file on the desktop, I find that often this can result in complete loss of keyboard input as far as file names are concerned – i.e., it becomes impossible to change file names, name new files or make any keyboard input whatsoever. This can happen almost at once, or after an indeterminate number of file names have been changed; there seems to be no pattern or logic to the phenomenon. Suggestions?

    I am having a hard time finding any common thread to this event. The last time it occurred, last night, I was running the following applications:
    Firefox v 2.0.0.1
    Entourage v 11
    Word 2004 v 11
    Photoshop CS v 8
    Preview v 3.0.7
    QuickTime v 7.1.3
    Silverfast launcher v 2.1.2
    Microtek Scanner Finder v 3.24
    Otherwise:
    Startup item: Microtek Scanner Finder v 3.24
    APE extensions: Don't think any; I don't recognise the term.
    Attachments: Printer (Epson Pro 3800), Scanner (Microtek i800), external hard drive, USB modem. However, I had these attachments even before the problem cropped up.
    Finally, I have also run repairs and permissions corrections from Disk Utility without discovering any problems.
    Many thanks for your help!

  • Kazakh keyboard input not works

    Hi.
    I'm can't figure out trouble with kazakh(cyrillic) input to text controls in Flex4.
    I'm embedded unicode fonts, and "Copy->Paste" kazakh text from notepad into flash app works fine!
    But i need to keyboard input. In my case ordinar cyrillic letters inputs normal, but kazakh-specific
    letters (located in keyboard's 1234 and 7890 keys) not works - ? symbol displays.
    Please, anyone help me. I'm wasting 2 weeks in attempt to resolve it.
    P.S: FlexSDK 4.0.0.12321, FP 10.0.42.34, OS Windows.

    When you paste and it works, take the string and look at the charCodeAt() for each character in the string.
    Then when you type, see if the keyDown event is reporting the same charCode or not.
    Another test is to verify that your browser can allow those characters when typed into an HTML INPUT tag.
    Hi!
    When i'm pasting kazakh letters into textInput, flexApp shows correct charCodes, e.g.:
    әіңғүұқөһ -> 1241 1110 1187 1171 1199 1201 1179 1257 1211
    but when i'm typing this letters from keyboard, flex shows these charCodes:
    ?і??????? -> 63 1110 63 63 63 63 63 63 63
    (cyrillic-kazakh letters located in place of 2,3,4,5,8,9,0,-,= symbols of keyboard, on simple click - lowercase, with ShiftKey - uppercase).
    testing app code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                protected function richeditabletext1_keyDownHandler(event:KeyboardEvent):void
                protected function rt1_keyUpHandler(event:KeyboardEvent):void
                    ttt.text = "";               
                    for (var i:uint = 0; i<rt1.text.length; i++){
                        ttt.text = ttt.text+" "+ rt1.text.charCodeAt(i);
            ]]>
        </fx:Script>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            @font-face {
                src: url("arialuni.ttf"); /* Embed from file */
                fontFamily:"Thai_font";            
                /*unicodeRange:"Cyrillic";*/
                unicodeRange: U+0400-04F9;
                cff-hinting:none;
                embeddAsCFF:true;
            .test{
                font-family:Thai_font;
        </fx:Style>
        <s:TextInput id="ttt" width="100%" fontFamily="Arial Unicode MS"/>
        <s:TextInput id="rt1" x="562" y="243" text="RichEditableText" width="100%" height="500" enabled="true"
                            editable="true"  fontSize="18" keyDown="richeditabletext1_keyDownHandler(event)"
                            keyUp="rt1_keyUpHandler(event)"
                            direction="ltr"
                            styleName="test"/>
    </s:Application>

  • Keyboard input errors

    I have lost all reliable keyboard input to my G4 powerbook running on OSX 10.4. I have been able to run Tech Tool, Disk Repair and Repair Permissions. I don't have another users account and without the necessary input, I cannot sign-in as another user.
    In all areas where text can be typed in, Text Edit, Apple Works, Authentication etc., if I get anything it is not close to the keystroke.
    I show over 37gb available on a 80gb hard drive.

    Hi, Melvin. If your keyboard is typing a lot of numerals instead of letters, press the Num Lock key (F6) to turn off Num Lock.
    If that's not the problem, connect a USB keyboard to the Powerbook and see whether it misbehaves in the same way. If it does, there's a software glitch behind the problem. To confirm that, boot to a CD or DVD. If the problem disappears, software on your hard drive is definitely at fault. In that case, while booted to the CD, run the Repair Disk and Repair Permissions functions of Disk Utility to square things away on the internal HD. Failing that, an Archive and Install of OS X should put things right.
    If a USB keyboard behaves properly when connected, your built-in keyboard or its connection to the main logic board has gone bad. To determine which it is, release the keyboard, flip it over onto your Tibook's wrist rests, and gently disconnect its ribbon cable from the logic board, then reconnect it. Put the keyboard back and test again. If the problem persists, replace the keyboard.

  • How to use the phone's Mini-Keyboard Input with the 'Textbox'(MIDP2.0)?

    (My apology. My English is not perfect but I'll try my best. >_<)
    Hi. I'm trying to create a textbox(in my own little application) that is compatible with the mini-keyboard input feature.
    This problem involved any device that have a built-in "mini-keyboard".
    Problem:
    I tried the 'Textbox' class from MIDP2.0 but the result, as expected, is like using the phones with no built-in keyboard.
    (Forexample if I want to input the character 'C' inthe text box, I need to press number '2' button three times to let it circle through 'A' -> 'B' then 'C'. )
    Then I tried entering URLs in the phone's built-in web browser, the result is I can use the mini keyboard to type like a PC keyboard.
    Question: How do I implement such textbox that is fully compatible with the built-in mini Keyboard?
    I tried browsing through the MIDP2.0 API but it seems the 'Textbox' class there couldn't do it.
    Thank you. =)
    /bow
    Edit/Delete Message

    The textbox should have input just as any other normal phone input. If not, something strange is going on.
    Anyway , there is no use to make your own input method, since every phone has another implementation of this anyway. It would only confuse users.

  • CS3 Language Keyboard Input Error

    Greetings All,
    I have been trouble-shooting this problem for a while, but still it is not resolved. Any help or ideas would be gladly received!
    Background: We have a correctly functioning installation of Win XP, and PS CS3 Extended which appears to work normally in every other regard. No obvious errors; no crashes, no start-up complaints; nothing seemingly out of order. I use several installed languages in Windows (EngUK, Russian, Swedish, etc). All of these work normally. All of my installed fonts work correctly in every application on the system except for CS3.
    There would appear to be something wrong with CS3's keyboard mapping in foreign languages. When typing with a non-English keyboard setting (any other language) and using TrueType fonts (not Open), only 'missing character' boxes appear in the artwork. The Layers menu displays the typed text correctly, but this will not appear in the artwork. If I use an old install of PS7, I can type using these same fonts correctly in any language. These layers can be imported into CS3, and these WILL display correctly on the artwork. However, the Layers menu in this case displays nonsensical characters. Ergo, I suspect that CS3's keyboard input data is errant.
    Where does PS3 keep its information regarding language / keyboard layout? It is possible to edit this file(s)? Are there any other ideas regarding this problem and what might be wrong?
    Thanks

    Unicode vs. non-Unicode. Turn off glyph substition in the character palette.
    Mylenium

  • Spaces locks keyboard input

    Per Sean Dale1, the following was mis-posted in the 10.5 Leopard thread (original post here: http://discussions.apple.com/thread.jspa?threadID=2201088):
    Have been running into this problem more and more frequently on both a MacBook Pro and Mac Pro tower running 10.6.1 and 10.6.2: when I Control-right-arrow to move to my other "space" one or two of two bad things will happen:
    (1) the icon in the middle-bottom of the screen showing which "space" I'm in does NOT fade away and disappear
    (2) I am prevented from doing ANY keyboard-input into my programs there. I will be able to click and highlight windows using the mouse, as well as see menus activating and such, but anywhere there is a text field (browser or address book or ANYwhere) keyboard input is not displayed.
    The only solution is to go into the Activity Monitor and quit the Dock application.
    Have been seeing this problem for a few weeks which persists through reboots and such.
    Ideas?

    This issue is being covered in more detail at this thread:
    http://discussions.apple.com/thread.jspa?threadID=2161076
    This suddenly started happening to me yesterday and now happens every time I switch Spaces with the keyboard. I've found that the only way around it is to only use the menubar icon to switch. Because I'm so used to clicking keys to switch Spaces and still do it unconsciously, I've disabled the keys in Spaces prefs.

Maybe you are looking for

  • Disk Utility reports "resource busy" and can't create an disk image

    HI, Just succesfully updated to Mountain Lion on my MBA and iMac. No problems. A very smooth proces. But, on my iMac the Disk Utility are not able to create new images at all! I'm not sure if this relates directly to the update, as DU works fine on t

  • Table of contents problem?

    Hi there I have a document that two layouts, one is for the iPad.  To create the new one, I chose to copy the styles and link the stories from the original.  I want to publish the iPad layout, but am having problems understanding the Table of Content

  • NOKIA 5800 Xpressmusic software updates

    Hello, its been 3 months since v60.0.003 has been released and it is still not available for my phone phone model: 5800 xpressmusic product code: 0596011 software version: v52

  • Object Check on file date

    Hi, i noticed a problem with an object i just created, i do a check on a file date, before an object must run. i check on the file \windows\system32\wininet.dll, it is create on 01/21/2004, The problem is that is have to check the date +1, (01/22/200

  • Itunest not recognizing my ipod touch

    how can i downgrade my ipod my itunes is not recognizing my ipod touch