Mouse Clicked gets lost some times.

Hello All,
The scenario is that i have a tree and the doubleclick on the tree node openes a view with some information. Also the node has some childrens. Sometimes when i double click the node, the tree node gets expanded but my view does not get opened. This was due to mouseclicked does not arrive with click count as 2.
In my code double click handling is done in the mouseclicked event. The code looks like
public void mouseclicked(MouseEvent ev) {
if(ev.getClickCount() == 2) {
.......//Opens a view
In some cases when i double click, mouse clicked is triggered only once with click count as one. But the mousepressed and mousereleased is triggered twice with clickcount 1 and 2 resp. I am not sure is this a valid behaviour. Please find below the traces of events.
Mouse clicked getting lost trace:
========================
Process Event : java.awt.event.MouseEvent[MOUSE_PRESSED,(129,482),button=1,modifiers=Button1,extModifiers=Button1,clickCount=1] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_RELEASED,(129,482),button=1,modifiers=Button1,clickCount=1] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_CLICKED,(129,482),button=1,modifiers=Button1,clickCount=1] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_PRESSED,(129,482),button=1,modifiers=Button1,extModifiers=Button1,clickCount=2] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_EXITED,(129,482),button=1,modifiers=Button1,extModifiers=Button1,clickCount=2] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_RELEASED,(129,482),button=1,modifiers=Button1,clickCount=2] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
When doubleClick Works:
=====================
Process Event : java.awt.event.MouseEvent[MOUSE_PRESSED,(125,530),button=1,modifiers=Button1,extModifiers=Button1,clickCount=1] on san.sample.CfCimTree[,0,-90,259x828,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_RELEASED,(125,530),button=1,modifiers=Button1,clickCount=1] on san.sample.CfCimTree[,0,-90,259x828,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_CLICKED,(125,530),button=1,modifiers=Button1,clickCount=1] on san.sample.CfCimTree[,0,-90,259x828,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_PRESSED,(125,530),button=1,modifiers=Button1,extModifiers=Button1,clickCount=2] on san.sample.CfCimTree[,0,-90,259x828,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.ComponentEvent[COMPONENT_RESIZED (0,-90 259x846)] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_RELEASED,(125,530),button=1,modifiers=Button1,clickCount=2] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Process Event : java.awt.event.MouseEvent[MOUSE_CLICKED,(125,530),button=1,modifiers=Button1,clickCount=2] on san.sample.CfCimTree[,0,-90,259x846,alignmentX=0.0,alignmentY=0.0,border=,flags=16777576,maximumSize=,minimumSize=,preferredSize=,editable=false,invokesStopCellEditing=false,largeModel=false,rootVisible=false,rowHeight=0,scrollsOnExpand=true,showsRootHandles=true,toggleClickCount=2,visibleRowCount=20]
Can anybody help me out to figure out to find what is the problem?
Thanks in advance
Sanjeeth S

I just checked mouseClicked.. and its working fine for me.
tree.addMouseListener(new MouseListener(){
               public void mouseClicked(MouseEvent e) {
                    // TODO Auto-generated method stub
                    if(e.getClickCount() == 2)
                         System.out.println("mouseClicked");
               public void mouseEntered(MouseEvent e) {
                    // TODO Auto-generated method stub
               public void mouseExited(MouseEvent e) {
                    // TODO Auto-generated method stub
               public void mousePressed(MouseEvent e) {
                    // TODO Auto-generated method stub
               public void mouseReleased(MouseEvent e) {
                    // TODO Auto-generated method stub
});If we double click on a node which is having child nodes, then it will collapse/expand when double click on it.
In all cases I am getting the display "mouseClicked" when doing double click.

Similar Messages

  • USB Mouse clicks get registered twice, sometimes

    Hello all
    I am using Arch Linux on my Thinkpad T61, and I usually have a USB mouse hooked up to it (Logitech Nano).
    A while ago I started to do some tweaks in order to enable the Synaptics TouchPad and get proper scrolling behaviour on the TrackPoint. However, I must have done something, because ever since, many of my USB mouse clicks get registered as a double click (not always, but often).
    I started doing some troubleshooting today, by commenting out parts of my xorg.conf file (I use evdev hotplugging, but I tought maybe Xorg was registering my mouse aswell) and I even booted up without an xorg.conf once, to no avail. The problem definately does not lie there.
    The only policy file I have that has anything to do with a mouse is /etc/hal/fdi/policy/mouse-wheel.fdi.
    [rob@rob-thinkpad ~]$ cat /etc/hal/fdi/policy/mouse-wheel.fdi
    <match key="info.product" string="TPPS/2 IBM TrackPoint">
    <merge key="input.x11_options.EmulateWheel" type="string">true</merge>
    <merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
    <merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
    <merge key="input.x11_options.XAxisMapping" type="string">6 7</merge>
    <merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
    <merge key="input.x11_options.EmulateWheelTimeout" type="string">200</merge>
    </match>
    Also, I found multiple entries for my mouse in /proc/bus/input/devices:
    [rob@rob-thinkpad ~]$ egrep "Name|Handlers" /proc/bus/input/devices
    N: Name="Macintosh mouse button emulation"
    H: Handlers=mouse0 event0
    N: Name="AT Translated Set 2 keyboard"
    H: Handlers=kbd event1
    N: Name="ThinkPad Extra Buttons"
    H: Handlers=kbd event2
    N: Name="Power Button (FF)"
    H: Handlers=kbd event3
    N: Name="Lid Switch"
    H: Handlers=event4
    N: Name="Sleep Button (CM)"
    H: Handlers=kbd event5
    N: Name="Video Bus"
    H: Handlers=kbd event6
    N: Name="PC Speaker"
    H: Handlers=kbd event7
    N: Name="SynPS/2 Synaptics TouchPad"
    H: Handlers=mouse1 event8
    N: Name="Logitech USB Receiver"
    H: Handlers=mouse2 event9
    N: Name="Logitech USB Receiver"
    H: Handlers=kbd event10
    N: Name="TPPS/2 IBM TrackPoint"
    H: Handlers=mouse3 event11
    N: Name="ThinkPad HDAPS joystick emulation"
    H: Handlers=event12 js0
    N: Name="ThinkPad HDAPS accelerometer data"
    H: Handlers=event13 js1
    Could someone please help me solve this problem, for I have no more ideas how to go at this... Thanks
    Last edited by robrene (2009-06-05 09:47:18)

    It seems there are multiple entries for my USB mouse in /var/log/Xorg.0.log!
    (II) config/hal: Adding input device Logitech USB Receiver
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event9"
    (II) Logitech USB Receiver: Found 16 mouse buttons
    (II) Logitech USB Receiver: Found x and y relative axes
    (II) Logitech USB Receiver: Found scroll wheel(s)
    (II) Logitech USB Receiver: Configuring as mouse
    (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE)
    (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    (**) Logitech USB Receiver: (accel) filter chain progression: 2.00
    (**) Logitech USB Receiver: (accel) filter stage 0: 20.00 ms
    (**) Logitech USB Receiver: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Logitech USB Receiver
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event10"
    (II) Logitech USB Receiver: Found 1 mouse buttons
    (II) Logitech USB Receiver: Found scroll wheel(s)
    (II) Logitech USB Receiver: Found keys
    (II) Logitech USB Receiver: Configuring as keyboard
    (II) Logitech USB Receiver: Adding scrollwheel support
    (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "de"
    (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    This looks pretty bad to me... The USB reciever is listed once as a mouse and once as a keyboard. Something went very awry here. This is the output after a fresh boot without xf86-input-mouse installed. The only remaining input drivers I have left from xf86 are:
    [rob@rob-thinkpad ~]$ pacman -Q xf86-input-
    xf86-input-evdev xf86-input-keyboard xf86-input-synaptics
    edit
    I removed xf86-input-keyboard as well now, still no change...
    edit2
    Aha! After some Googling and hooking up the mouse on a Windows XP machine, I noticed that this is a problem with this specific mouse. Under Windows XP, I get the same behaviour (often a double click, sometimes no click at all). It seems it is time to find the warranty papers for this baby. In case anyone ever reads this, this happened to me on a Logitech VX Nano, after about 5-10months of usage (I don't recall when I bought it exactly).
    Last edited by robrene (2009-06-05 15:14:23)

  • After OS upgrade to 4.2.7 my slide bar get freez some times

    after OS upgrade to 4.2.7 my slide bar get freez some times , when try answer incoming calls

    Yes, it's happened to me too, and I'm on 4.3.2. "Slide to Unlock" or "Slide to Answer" locks up the phone when the slider reaches the right side, which is supposed to unlock the phone. No choice but to force reboot.
    It's happened to me twice so far.

  • HT201257 My Macbook pro gets hang & some time restarted frequently , please revert with solution , thnx

    My Macbook pro gets hang & some time restarted frequently

    If you're having kernel panics, please post the text of the log in a reply here. See -> http://support.apple.com/kb/HT2546. If you have a panic log it will be in your root /Library/Logs/DiagnosticReports folder.
    Also please post your MacBook Pro model (e.g., "15-inch Late 2011" or "8,2").
    Call back,
    Clinton

  • APs in a particular area getting disconnected some times

    I am getting a problem with my customer . In a particular area , all LAP  APs suddenly disconnect. I changed the channel and power setting in APs . Also rebooted , but same result . please any can help me .

    Careful with making too many changes. It seems like you currently have two.  One is the issue where APs dissassociate from the WLC or clients don't associate to the APs.  The other now is that clients don't roam in other areas.
    So did you fix the initial issue first and is the issue the AP dissassociate from the WLC or clients all drop and can't assiciate to access points in the area?
    As far as roaming, the device makes the decision and not the AP. If your power is set high and or you have the lower data rates enabled along with enough go AP density, then clients don't have to roam due to your settings. You need to understand your RF and coverage which means knowing the overlap seen by the device. Client drivers also can be a reason for poor roaming especially when some devices work fine and a particular device or driver version shows poor roaming. You need to isolate the issue more, which means being out onsite and not really taking the information that they are telling you as accurate.  Not being onsite to troubleshoot and asking them to test and provide you with feedback can make your troubleshooting go round and round. False information will bring you back where you started. This is from my experiences with customers wanting troubleshoot remotely.
    -Scott

  • Settings fur buttons get lost from time to time

    I have customized the buttons in Firefox (via right-click on the toolbar, customize, dragging and dropping).
    About every two to four months Firefox loses these settings and resets the buttons to the default.
    Needless to say this is extraordinarily annoying.
    I think this behavior first started with Firefox 3 or 4.
    There is one scenario where I can somewhat reproduce the issue: A particular website opens new windows via JavaScript. On that window and all following windows the buttons are reset not every time, but pretty often.
    However, it also happened on other occasions, e.g. today.
    Is there a way I can store my button settings externally to Firefox and reload them when this happens? So I don't have to drag them all in place again manually.

    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    You can make a backup copy of the localstore.rdf file.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Lost keypresses and mouse clicks:  Hardware problem?

    I recently bought an Intel MBP, and I've been noticing strange behaviors with regard to keypresses and mouse (touchpad) clicks getting lost sometimes. The problems I'm having are hard to reproduce intentionally, but I can hear the keypresses and mouse button clicks when I do them, yet nothing happens. While it's possible, that I sometimes am hitting the wrong key, I have been paying closer attention lately to this problem, and of course, the mouse button kinda hard to hit incorrectly. Here are some examples of weird things I encounter:
    If I click in a text field in Safari, sometimes the first keypress (and only the first) will get lost.
    Sometimes, the first keypress I type right after clicking gets lost. For instance, just now, I noticed a typo in the above sentence, so I clicked on the character and hit the Delete key. The cursor was in the right place, but the delete didn't happen. I had to press the key again.
    Sometimes, even when the window for sure has focus and the pointer is squarely pointing to a link, the first click on the link won't take. I have to click it again. Since Safari doesn't have adequate feedback for when you click something, that can get particularly frustrating. Similar things happen with buttons in applications or on the title bar.
    If I'm using an X11 app, and I copy/paste with the clipboard, the touchpad won't respond to movement for 2 or 3 seconds afterward. This is particularly visible with "nedit". I don't think this is an "ignore accidental touchpad input" issue, because this only happens with clipboard actions; other keys don't have this effect. I haven't noticed this with native apps.
    However, I have noticed in X11 and native apps, sometimes, Ctrl/Cmd-C and Ctrl/Cmd-V will be ignored. They're never ignored if I selected the text using the keyboard (shift+arrows), but if I select the text with the mouse and then use the shortcut to copy, the copy/paste sometimes doesn't happen.
    I have noticed that if I am more deliberate about clicks (make sure to hold the button down longer), the probability of losing the event SEEMS to be reduced, but not eliminated. Is there a debounce circuit involved that's causing me trouble?
    This kind of loss of input is unusual to me. I have a number of Windows and Linux PCs, and I've never experienced this sort of thing. I've also used a few Macs at school before I got this one and didn't notice anything weird.
    Can anyone shed some light on this for me? It would seem odd that I should have to modify my keyboard/mouse using behavior when switching to the Mac. If the problem is hardware, how can I prove it? (Perhaps I could boot Knoppix from a CD and mess around a bit.) If the problem is software, is this a case of MacOS trying to second-guess user input?
    Thanks!

    Theosib,
    Apple regularly monitors these boards, but you may never see a response from Apple directly. Assume this is a user to user forum. If you are having a problem with the computer and need a response from Apple call 1-800-APLCARE and speak to customer relations at that office if the technician is not able to satisfy your needs.
    Your problem while not unheard of, is more uncommon than the boards may make you believe.
    Remember, Spotlight is constantly indexing. If your hard drive is overfull, it may take longer for Spotlight to index, thus cause a multitasking delay. If you have many Dashboard widgets, they may all be trying to access the net for updates at once, and again, a delay might happen. I've written a FAQ* about several other factors which may affect Mac OS X speed, which could in theory also affect keyboard input:
    http://www.macmaps.com/Macosxspeed.html
    And of course, you should always check Apple menu -> System Preferences -> Keyboard and Mouse to make sure your input settings are the ones most comfortable for you when using the keyboard. It is possible a repeat rate could cause a delay.
    Edit: I attempted to answer another of your questions here recently with an update:
    http://discussions.apple.com/click.jspa?searchID=-1&messageID=3988468
    Please take a look and see if it answers your question.
    * Links to my FAQs may give me some compensation.

  • Firefox missing mouse clicks

    I have updated both my desktop (Win7) and my laptop (WinXP) to Firefox 9.0.1 (from 8.0) and both are suffering from this issue.
    about 99% of my left mouse clicks seem to get ignored, but middle and right are both perfectly find. Left button operates correctly in all other programs.
    The mouse works correctly in the taskbar/menus/tab bar/scroll bar, but stops as soon as I am inside the page display area.
    Sometimes if I click continuously for 10 seconds I get an ok click, or sometimes I have to use a different program for a minute and then come back, then I can get 1 or 2 clicks before it stops working.
    Currently navigating using tab, and shift+tab.
    This is very very annoying, has anyone else noticed this after update? or have any ideas?

    garry wrote:
    My current issue is that if the simulator is frozen (system time is cycling within a 100ms window) mouse clicks on buttons are getting lost.OK that's an entirely different kettle of fish. Firing an action does require that the mouseReleased be later than the mousePressed, and that both be over the button.
    Consider ths scenarion in any normal application that doesn't interfere with the system time. The user presses the mouse over some other component, drags over to the button and releases it. Next, the user presses the mouse over the button, drags off the button and then releases it. This isn't supposed to trigger the button's ActionListener#actionPerformed.
    With the system time looping, how does the runtime know that this isn't the case?
    I can see the button border change when I move the mouse over the button,that's rollover, triggered from mouseEntered. timing is not an issue.
    but the mouse click is lost (button does not get depressed).See above.
    Sometimes it works fine for a few mouse clicks and other times several mouse clicks will be lost in a row.See above.
    It seems random.In a way, it is.
    This seems to be more prevalent with buttons than capturing a mouse click on a panel where I do 2D drawing. Not sure why.Could be just human susceptibility to guesswork, or may actually have something to do with the occasional additional processor cycles involved in the custom painting. Since you haven't described the frequency of repainting nor its complexity, that guess is my susceptibility to guesswork ;)
    When I put the simulator into Run mode, it works perfectly, never missing a click.Of course it will.
    Anyone out there have any insights into what might be going on under the hood inside Java/Swing with mouse events and the system clock?See above.
    db

  • Mouse click bugged

    Hello.
    I've spent a few days now troubleshooting this problem but I guess I'll have to refer it to the boards, I'm utterly stumped.
    My mouse clicking has started cutting out intermittently.
    The Symptoms are these:
    When in an application such as safari, my left or right click (using a mighty mouse) will be ignored for long periods of time, or only be registered after 50 or so clicks have been made. The mouse still tracks fine and I can often click UI elements or links within the page but can't click the main menu or some of the other UI elements. I also can't click into another application to change the frontmost application.
    However, at all times I'm able to click on the finder in the background and drag around folders and whatnot.
    First of all I presumed it was simply a case of Safari, Text Edit, iChat etc not being the frontmost application. However the menus at the top always showed the correct application as being active and never displayed the UI elements as faded as would be the case with an application which is not at the front.
    Sometimes switching too and from the application window will restore click sensitivity, relaunching the finder also works. However the clicking bug will return only a few seconds later.
    Things it's not:
    1) It's not a universal access problem. Made sure this wasn't active
    2) It's not a fault with the Mighty Mouse. I checked it on other computers, works fine.
    3) The mouse hasn't been incorrectly configured in System Preferences.
    So basically the situation I'm in now is that any application will spontaneously lose mouse clicks as if some phantom application was running in the foreground absorbing them. The only exception to this rule is the Finder which works at all times (but from which I can't select other windows to bring other applications to the foreground) and who's quitting will reset the bug temporarily.
    No other applications are running, my knowledge of the process IDs for various system level processes is poor but I'd be able to notice anything than totally out of place applications running in Activity Monitor.
    Some UI elements are unaffected by the bug, such as finder panes and scrollbars, others are such as title bars, traffic lights and control buttons.
    I'm at my wits end, in over 15 years of using Macs this is by far the most annoying bug I've ever come across (thankfully I've not had many others to speak of) and one which I'm completely baffled by.
    Oh and the latest security update is installed.
    (right now in fact, I just went to go click on the apple menu from here in Safari and it won't register my clicks, none of them - I had to tab out to the finder to click the apple menu)
    Dual 2ghz G5   Mac OS X (10.4.6)   2.5 GB ram

    Yup, thanks.
    I had to use the preferences to work out what the problem was - I had a hunch because safari was opening any link I clicked in a new tab so I set the middle button to open spotlight. Sure enough, every click I performed with the mouse triggered spotlight.
    All I did was deactivate the middle button action and I could get a single left-click working fine. However, since the Mighty Mouse interprets Right Mouse + Scroll Ball as Middle Click, I'm left without a right click.
    Quicksilver (2002) 933mhz   Mac OS X (10.4)  

  • Cannot mouse-click anything in Oracle forms

    Hi, I can't mouse-click any of the icons/menu/options within Oracle forms. I can navigate using keypad, but can't click using mouse. The screen won't respond. I'm having same problem when opening SQL developer. Appreciate some pointers to troubleshoot the issue. Thanks.

    Hi user;
    In addition to Ahmed also check:
    Scroll mouse not working in Oracle Applications!
    Re: Unable to navigate through mouse click
    There are some similar discussion as your problem in this search:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=mouse&objID=c3&dateRange=all&userID=&numResults=15
    Please check search, i belive you can find many useful advice&notes in there
    Hope it helps
    Regard
    Helios

  • Recording a series of mouse clicks possible with Flash?

    Hi,
    I am having a go at developing a drum machine and I have a collection of buttons that play audio.
    Is there a piece of code, or somewhere I can search to record a series of mouse clicks, ideally against a timer that I could then play back?
    I have no idea if this is possible (I am sure it is) or what to search for.

    you can record mouse clicks but timing in flash is approximate so may not be suitable for what you want.
    you can use getTimer() to record the number of ms that have transpired since your app started.  and you can use mouse click listeners to record when the mouse is clicked.

  • I keep getting message "mozila Firefox not responding." It takes minutes to down load a site - some times it just gets in a loop and never down loads. Then when I try to click on it again screen goes opaque and i get the same message.

    I 'm getting message "Mozila Firefox not responding." It takes minutes to down load a site - some times just gets in a loop and never down loads. The little circle at top just keeps going round in circles .
    Then when I try to click on the screen again the screen goes opaque and I get the same message re " Mozilla Firefox not responding" - and it is minutes before I can get back in to close down screen.
    I have downloaded Fire fox version 4 and this is still happening.

    See:
    * http://kb.mozillazine.org/Error_loading_websites

  • I get junk mail on my iPad that states "this message has no content".  If I click on it my mail freezes up and after some time my mail program works again.  I use a .mac address.  Anyone have similar issues?

    I get junk mail on my iPad that states "this message has no content". If I try to delete it or click on it my .mac mail freezes up and it takes some time for my mail program to continue.  Has anyone else had this issue?  Ideas for resolution?

    Yeah, I've seen it from iOS 7 to the present. It appears to be a network issue, as the Mail app is trying to grab the information to display the first few lines in the abbreviated display. I haven't had mine freeze though. When I click on it, it will simply show a blank message. Now I can quit the app and later reload the app, and "sometimes" the contents come back right away. In other instances, not right away, but eventually.
    You might try quitting all the apps, then going to the Settings app to Reset and reset your Network Settings. The iPad will reboot. Try it again after that.

  • I lived in the uk for some time and set up my itunes while I was there. Upon moving bnack I managed to get all my music back however after my mot recent iphone update, I lost some of my songs from the uk. Not all of them. HELP!

    I lived in the uk and have now lost some of the music I purchased there. Not all of the music. I still have reciept numbers. Can I get it back?

    try changing your appleID to whatever you were using when you were acessing the UK store.  Then try to re-download the purchased music.  I am not sure if re-downloading music works from the UK store, however.  It might be US only.  If this is the case, you will need to contact iTunes support.

  • CAN NOT write text on some webpages like googlemail if use right mouse click, last copied text gets pasted in against my will Macbook pro: OSX 10.6.8 Firefox,

    I would like to use right mouse click for spelling translate but when I click it pastes the last copied text in instead of opening the menu it happens on many webpages.
    thanks for help
    Elkan

    still having same problems.
    is this the only way to get support from firefox? where are the developers that write the code? or someone directly responsible for the product? i don't expect an end user to help but this is ridiculous. the windows version works fine but the mac version doesn't. i'm running both on the same machine so it's not the hardware (running windows as a virtual guest in parallels).

Maybe you are looking for