Webi: Mouse clicks not working

Hi
I am using BO XI 3.1, Webi 12. .1.0.882 client. It is not responding to mouse clicks although I can use keyboards to open the universe e.g.(even for logon).
Any ideas why is this happening and how to sort this?
Thanks for all help.

I have the same problem some times.
This is going to sound crazy, but try this:
1. Lay the mouse down like you would if you were going to use it.
2. Use you index finger and "bang" on the mouse like you were mad at it. Hit it where the primary button (left side for me) is. Don't be too aggressive.
3. It should work. It has always worked for me.
4. It also helps to clean the track ball. I just run the track ball back and forth on my jeans.
Good luck!
P.S. I do not think this will void any warranty, just don't tell Apple!

Similar Messages

  • Mouse click not working

    i set up a new battery, i pressed command D without not cause. After that my mouse is not working, its noly moving and scroll. Does not CLick.what to do now?

    Please reset the SMC Control, Apple explains how in:
    http://support.apple.com/kb/ht3964

  • Mouse click not working properly

    I just bought a macbook pro last week. Since using lion, I have noticed a problem clicking. Such as opening folders, minimizing windows, clicking the back space button etc. I click on a few folders and they open, and then I try to click on another one and it refuses to open no matter how many times I click on it unless I unselect it and try again. It is not consistent to specific folders/icons, it just happens at random. It is as if the OS is not registering clicks consistently, like it were a hardware problem. Also my right click malfunctions at times and will either not work or will behave like it is the left click and vice versa and takes awhile to regulate itself.
    Keep in mind I use both a wireless usb mouse and my trackpad and this is a problem I experience with both of them. I am using the latest version (10.7.3)

    Your warranty includes 90 days of phone support. Call AppleCare.

  • Mouse clicks not working on published air app, works fine when debugging/testing

    So I have an issue where when debugging my Air application, it runs fine and mouse clicks work and everything.  When I publish the application and install it, it plays fine but clicking does nothing.
    We have an older version which is working when we publish it and we're trying to add things in one step at a time, but I figured I'd see if anyone else has had this issue.  A bit frustrating.
    Thanks!

    FIXED!!!!
    We're using Dropbox to share files and it turns out that two people having project open at same time is a bad idea when doing final publish!  It creates conflict files and effects the final package or something of that nature.
    Glad we got that one figured out!

  • Mouse Clicker Not Working

    Hey
    You know how the mouse clicker is supposed to pop back up after you click it? Well only one side of my clicker does. The other side will not pop back up. I believe my laptop is still under warranty. If I take it into the Apple store can they fix it?
    Thanks

    If you are under warranty, just take it back and Apple should fix it.
    If you are out of warranty, I'm sorry no answer for that.

  • Mouse clicks not working

    Hello,
    I am managing a mac pro (leopard) from a macbook (leopard) using remote desktop 3.2. Often when I control the mac pro, and enter a user session the mouse clicks on the managed computer behave incorrectly. A normal click corresponds to a click with a side button (the ones that show all the windows on screen). When this happens I have no other solution than to reboot the managed machine because I can't control it with the mouse. (can't select anything)
    Has this happened to anyone else ?

    Oops. Doing the same thing again. If I disconnect/reconnect the mouse, the buttons get switched to the right position. After that log out/in and the buttons are again the other way around. To do a click have to press the command key while pressing the mouse button.

  • Magic Mouse click not working

    I have a magic mouse, with a MBP and 10.6.1 and the wireless mouse update installed.
    The mouse more or less works if "Secondary click" is checked. If I uncheck it, clicking does nothing. The mouse moves and scrolling works, but clicking has no effect.
    Also with "Secondary click" checked, if any part of my hand is touching the top surface of the mouse, I get a right-click when I click - makes the grip kind of awkward.
    Tried re-installing the software update.
    Any ideas? Thx.

    Not sure why it worked this time, but I deleted
    com.apple.driver.AppleBluetoothMultitouch.mouse.plist
    from the User preference folder again, and now the mouse is behaving as normal. I did not touch the .globalpreferences file.
    I did clean all the system/user caches (using Cache Out X), and then deleted this file again, but now the behavior seems correct
    - with Secondary Click deslected, the surface acts as one big single click button
    - with Secondary Click selected, it acts as a two button mouse
    - in Secondary Click mode, resting your second finger on the contexual side surface while clicking on the single click side surface does not interfere with the single click as it had before
    - in Secondary click mode, you need to lift your finger off the single click side when clicking the contextual button side, or it will not register as a contexual click. I presume this is expected behavior, as it is physically a one-button mouse, and Apple opted for a two-finger click to be interpreted as the more common single click request.
    Hope this helps some

  • Right Mouse Click not working. Despite trying everything including reinstalling TB I can't get it to work on my Desk Top - works on my Laptop?

    I have tried reconfiguring my mouse including downloading up to date drivers. The frustrating part is it works fine on laptop

    Hmm- you're right.  I've run software update and the app store and it hasn't come up.. so I thought I was up to date (not to mention I just got the laptop a few days ago... and assumed it was updated).  I'll try that.  Thanks

  • Mouse clicks not working: hyperlinks and closing tabs require multiple clicks

    When I click on the "x" icon to close a tab the tab will not close. After clicking a second, or sometimes third time, the tab will close. Same thing happens with hyperlinks. Also, Firefox seems slow and lethargic.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • JSlider and mouse click not working

    I am using a JSlider class so the user can choose a population size. I'm showing the slider with a scale from 0-100.
    When I move the slider button with my mouse the value changes. However, when I click anywhere else on the slider, nothing happens. It should be moving to the next minor tick. Here is my code snippet:
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    (here's the construction of the slider)
    private JSlider m_popSizeSlider = new JSlider(0,100,20);
    m_popSizeSlider.addChangeListener(new SizeSliderHandler());
    // now handle the size slider
    m_popSizeSlider.setPaintTicks(true);
    m_popSizeSlider.setPaintLabels(true);
    m_popSizeSlider.setSnapToTicks(true);
    m_popSizeSlider.setMajorTickSpacing(20);
    m_popSizeSlider.setMinorTickSpacing(5);
    comboPanel.add(new Label("Size of Population: "));
    comboPanel.add(m_popSizeSlider);
    (here's the change listener code - defined as an inner class)
    class SizeSliderHandler implements ChangeListener
    * <p> This method is called when the user clicks on the size slider
    public void stateChanged(ChangeEvent e)
    JSlider s = (JSlider) e.getSource();
    m_popSize = (int) s.getValue();
    //System.out.println(m_popSize);
    so what am I doing wrong?
    thanks
    barry

    This page has lots of examples:
    http://www.esus.com/docs/GetIndexPage.jsp?uid=301

  • 2008 Macbook pro left click not working properly after upgrading to 10.6.8

    I have a 2008 Macbook pro and a few months ago after upgrading to 10.6.8 my left click has been wonky.
    Using the trackpad the left click eventually gets "stuck" or stops responding and I have to push it multiple times before it does anything.  I have tried plugging in a mouse, but when I do so the mouse also behaves the same way.  The only way I seem to be able to get the clicking to work properly is to restart the computer with the mouse attached.
    I have seen threads about trackpads being messed up by swollen batteries, but my battery is brand new and looks fine, and the clicking problem extends to an external mouse, so I believe it is something with the preferences.
    I tried deleting  com.apple.driver.AppleBluetoothMultitouchTrackpad.plist   and restarting and the problem seemed to be fixed, but then after about a half hour it returned.
    Having to keep a mouse plugged into my macbook is driving me crazy, anyone know a solution?

    I started having the same issue after update.  I'm on a MacBookpro running 10.7.2
    ICalled apple and they did a remove battery reboot, a reload lion and a option/command/R/P reboot on startup and then the computer started working.  Two days later problem was back.  I then did a reboot and the computer was back to working.  Today the computer worked fine tell it went to sleep.  I had to do a hard reboot to get the Mac up and running and now no left click.  Please help. I can not use the Mac  with the trackpad, a mouse, a Bluetooth mouse, or a digital pad. All so signs of left mouse click not working.  One other item when you go to pick your user at startup the left mouse click works.  Help!

  • Suddenly my double click both on track pad and mouse is not working

    suddenly my double click both on track pad and mouse is not working.in System Preferences,track pad, i have ticked and unticked the Tap to click several times.Restarted the mac for several times at well but still i do not have double click.help me please.

    It might be the double click speed setting.
    Look in System Preferences > Universal Access > Mouse & Trackpad tab > Trackpad options.. button > move the double click speed to the slow side of the range.

  • USB mouse does not work

    hi All
    I bought a new HP laptop few days ago,when I installed Win7 pro on it after a few minutes, the usb mouse stopped working. Its light still lights up ,but the cursor does not react. The drivers of the device are installed and working properly. the mouse will
    not work until I click "scan for hardware changes"in Device Management . but when I restart the computer, it happend again . but win7 home edition seems does not have this problem. please help.  thanks  

    Hi,
    I suggest updating the latest BIOS and chipset from HP site, then reinstalling USB controllers to check the result. If any USB hub is used, please bypass it.
    http://blogs.technet.com/b/asiasupp/archive/2010/11/23/error-message-one-of-the-usb-device-attached-to-this-computer-has-malfunctioned-and-windows-does-not-recognise-it.aspx
    Also, please perform
    clean boot, disable your antivirus and firewall
    temporarily to avoid any blocking. If the issue persists in clean boot, test the issue in Safe Mode and Device Clean boot.
    Device Clean Boot
    1. Go to Device Manager
    2. Expand "Sound, video and game controllers".
    3. Right Click on Audio device and choose disable.
    4. Please use the same method to disable other dubious hardware such as: internal modem, and CD-R drive. Please note some devices such as video adapter are not available
    to be disabled.
    5. After that, restart the computer and then test the issue. If it does not occur, you can enable the device one by one to narrow down this issue.
    After you found the device that causing the problem, you can resolve by installing last driver or replacing the device.
    Best Regards,
    Niki
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • 12002 The Reporting Web Service is not working.

    Hi :)
    I have WSUS on Windows Server 2012 std. with Internal Database. Today I've installed 7 updates from patch tuesday and after restart I've got
    error 12002 The Reporting Web Service is not working
    I can see now that updatet clients can not report their status anymore :(
    What's up ? Any suggestion ?
    Best regards
    Nenad

    Hi,
    I would start by verifying that the /ReportingWebService resource is properly configured in IIS.
    Correct configurations can be found in the WSUS Technical Reference Guide: IIS
    Settings for WSUS 3.0 SP2 Web Services.
    Also,Under ReportingWebService
    Made sure all were set to disabled except for Anonymous Authentication
    Anonymous Authentication Enabled
    ASP .NET Impersonation Disabled
    Basic Authentication Disabled
    Forms Authentication Disabled
    Windows Authentication Disabled
    Regards,
    Clarence
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Mouse Clicks stop working randomly

    So far I have noticed several times on my Quad Core 27 inch imac that the mouse clicks stop working.  This is with two different mice, plugged in together, so I know it's not mouse or driver related.  It happens to both of them whenever it does happen.
    The only correlation I can make is that it usually happens when I am on a website.  I might even have noticed a correlation with "flash based" modules and components on websites, but this could be speculation at this point.
    Apple, I love you, but having to hard restart my $2000 computer because the mouse is inoperable is unacceptable.  Figure this out.  There is no excuse for this.  PC's don't do this.  I've never had a computer do this in my entire life and words cannot describe how frustrating it is, especially when you are in the middle of trying to get some work done...
    -Matt

    Try hitting the escape key on the keyboard (ESC). I've noticed that some property sheets, dialogs, and context menus can get 'lost' if you change focus to another program intentionally or accidentally, or if an application 'steals focus' (fairly rare in OS X). You may have to Command + Tab between applications to find where things are 'hung up'. Flash seems especially bad about hanging after a right click tries to call up a context menu.

Maybe you are looking for

  • When i try to open a folder in mail it opens with textedit and gives me an error

    some mails that are sent from gmail doesnt want to open like all the other mails when i try to open it, it gives me this error in the textedit as the picture show so i need a solution because i use my mail alot.

  • Itunes 7.1.1 keeps crashing

    itunes 7.1.1 crashes randomly. For example, when i'm adding songs to my ipod it will just crash randomly. Also when i just have itunes open and not using the program it will crash. I really hope they put out another fix soon. Anyone else having this

  • QuickTime (Snow Leopard 10.6.1) Problem Playing Media

    Hi there, QT X doesn't want to play any media files. If I click on a file on the desktop then it says "QuickTime Player must be installed to run this application". However, if I open QT and then choose the same file it will play it! Also I see that I

  • Configuring AppleTV for Wireless deployment without WLC (881- 3560- AP)

    Hi Guys, I have read the Wirelss deployment guide provided but i do not seem to get AppleTV to work on the wireless network. When connected to the wired network - all is ok. Design - Cisco 881 -> 3560 -> AP Here is what i have so far: Router Config:

  • Any way to find out which program has created a job using 'JOB_OPEN'?

    Hi, I have some jobs created by some program. The job is incomplete, i.e., the programs which created the job just used 'JOB_OPEN' and it doesn't have any steps. Is there any way to find out which program created that incomplete job? Thanks in advanc