Mighty Mouse clicking and releasing randomly

Hello,
Its difficult to describe exactly what is happening but I'll try to be specific.  I am running Mac OS X (fully updated) and Parallels 6.  The only major change I've made was to install Adobe CS5 creative suite to the Mac side, and the mouse issues started perhaps a week or two after that.  Basically, if I select something and try to drag it, whether it be objects in a design program, folders on the desktop, or even copy in a document, the mouse will deselect and reselect at random.  This has gotten progressively more irritating to the point where I dread the click and drag wholeheartedly.  Some days are definitely worse than others, and there is no rhyme or reason as to when this will happen.  I could be organizing the desktop, working in Adobe Indesign, or simply editing copy in Microsoft Word.  It also has no qualms as far as whether I am working on the Mac or PC side.  It is obnoxious on both platforms.
So far I have tried all the basics such as restarting, using compressed air to clean out the mouse, attaching a new mouse (its a usb connection), using a different usb port altogether, and using compressed air to clean out the ports before I plug the mouse in.  I have also tried switching between my desk and a mouse pad in complete desperation.  None of these attempts have has any affect.  Can anyone offer any suggestions?

Hello and Welcome to Apple Discussions ...
Fist, here are the instructions to clean a Might Mouse: http://support.apple.com/kb/HT1537
and here: http://www.macosxhints.com/article.php?story=20060210115417864&lsrc=osxh
Second, go to System Preferences/Keyboard&Mouse/Mouse and make sure your Tracking/Scrolling and Double Clicking is set to your liking. (The System Preferences panel is located in your Applications folder)
Carolyn
Message was edited by: Carolyn Samit

Similar Messages

  • Using Firefox 3.6 after a few mouse click/ keyboard input the firefox window is no more active, mouse click and keyboard input is inactive ; then I click on the taskbar and the keyboard is active again during a few click then it stops again etc.

    Using Firefox 3.6 after a few mouse click/ keyboard input the firefox window is no more active, mouse click and keyboard input is inactive ;
    to solve it I click on the taskbar and the keyboard is active again during a few click then it does not work any more and I click again on the task bar etc.
    after several repetitions, I have to call the task manager alt+del+ctrl, then come back to the firefox window to be able to use keyboard and mouse again

    Attaching the picture for the tab shape I want...

  • Scripting a mouse click and drag

    does anyone know how to script a mouse click and drag. I tried XTools. No luck. What about Cliclick. I had tons of success with TextCommands but I dont know how to get OSAX plugin code to work. Thanks in advance.
    I am trying to move a desktop clock (QuartzClock) from the center of the screen to the side.

    I tried (unsuccessfully) to find a mouse move and click solution in Applescript.
    My search brought me to this site: http://www.geekorgy.com/index.php/2010/06/python-mouse-click-and-move-mouse-in-a pple-mac-osx-snow-leopard-10-6-x/
    The following python script will move an object from position 60.100 to 60.300
    #!/usr/bin/python
    import sys
    import time
    from Quartz.CoreGraphics import * # imports all of the top-level symbols in the module
    def mouseEvent(type, posx, posy):
    theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
    CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
    mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclickdn(posx,posy):
    mouseEvent(kCGEventLeftMouseDown, posx,posy);
    def mouseclickup(posx,posy):
    mouseEvent(kCGEventLeftMouseUp, posx,posy);
    def mousedrag(posx,posy):
    mouseEvent(kCGEventLeftMouseDragged, posx,posy);
    ourEvent = CGEventCreate(None);
    currentpos=CGEventGetLocation(ourEvent); # Save current mouse position
    mouseclickdn(60, 100);
    mousedrag(60, 300);
    mouseclickup(60, 300);
    time.sleep(1);
    mousemove(int(currentpos.x),int(currentpos.y)); # Restore mouse position
    See also:
    http://developer.apple.com/mac/library/documentation/Carbon/Reference/QuartzEven tServicesRef/Reference/reference.html
    http://developer.apple.com/graphicsimaging/pythonandquartz.html
    Tony

  • Mouse click and drag through turntable animation

    Hi all,
    First - thanks for taking the time to look through and possibly helping me with this question.
    I'm just getting to grips with flash cc actionscript 3.0 - so I apologise in advance to my not so technical jargon.
    In the past I have used actionscript 1.0 to create an interactive html file that contains a turntable animation of a 3D model. Users can mouse click and drag to the left or right to 'spin' the model around - however what they are really doing is scrubing through the timeline which contained 360 images of it from 360 degrees. Similar ideas can be found here: Interactive Thyroidectomy
    Now annoying I can't use the old code any more as I'm working in the latest flash cc actionscript 3.0
    So how do I do the same thing but in actionscript 3.0?
    So I've worked this bit out so far
    On my main stage I have two layers - actions layer and another layer with my movie clip (movieclip_mc)
    In the actions layer so far:
    movieclip_mc.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
    movieclip_mc.addEventListener(MouseEvent.MOUSE_UP, onMouseUp);
    function onMouseDown(event:MouseEvent):void
      movieclip_mc.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
      //I should put something in here about mouseX  - but no idea what
    function onMouseUp(event:MouseEvent):void
      movieclip_mc.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    function onMouseMove(event:MouseEvent):void
    //I have to put something in about total frames - width of movieclip_mc etc but I'm not sure how   
    // this is what someone else did on another forum - but I'm not sure what it means:
         var delta:int = backgroundClip.mouseX - clickedMouseX;
       var wantedFrame:uint = (clickedFrame + delta * clip.totalFrames / backgroundClip.width) % clip.totalFrames;
       while (wantedFrame < 1)
      wantedFrame += clip.totalFrames;
      clip.gotoAndStop(wantedFrame);
    Also I think i need something in the beginning like.....:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var clickedMouseX:int;
    var clickedFrame:uint;
    var backgroundClip:Sprite = getChildByName("background") as Sprite;
    var clip:MovieClip = getChildByName("animation") as MovieClip;
    clip.stop();
    clip.mouseEnabled = false;
    .....but I'm a bit confused about what all of it means
    So I understand the principle but no idea how to actually make it work - Could anyone help explain it to me or help with the code?
    Thanks so much to anyone who can offer some help
    Catherine

    Hi Ned,
    sorry to bother you again on this subject -
    the script...
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    worked fine - but when you click and drag on the movie clip it didn't always get to the end of the movie and never carried on through the frames back to the beginning like i wanted it to (such as this one does Interactive Thyroidectomy)
    So I went back to the older 2.0 script and played with it a bit to be :
    function onMouseMove(event:MouseEvent): void {
      changeDistance = movieclip.mouseX - startX;
      travelDistance = startFrame + changeDistance;
      if (travelDistance > movieclip.totalFrames) {
      movieclip.gotoAndStop (travelDistance % movieclip.totalFrames);
      } else if (travelDistance < 0) {
      movieclip.gotoAndStop (movieclip.totalFrames + (travelDistance % movieclip.totalFrames));
      } else {
      movieclip.gotoAndStop (travelDistance);
    .... which almost works but it is very stuttery to mouse over and then it has this output error..
    mouseDown
    ArgumentError: Error #2109: Frame label 2.3500000000000227 not found in scene 2.3500000000000227.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 3.6499999999999773 not found in scene 3.6499999999999773.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 4.949999999999989 not found in scene 4.949999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 6.25 not found in scene 6.25.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 7.600000000000023 not found in scene 7.600000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 8.899999999999977 not found in scene 8.899999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 11.5 not found in scene 11.5.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 12.850000000000023 not found in scene 12.850000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 14.149999999999977 not found in scene 14.149999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 15.449999999999989 not found in scene 15.449999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 16.75 not found in scene 16.75.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    mouseUp
    I've obviously put some code in the wrong place - could you help me find out what it might be?
    I haven't labelled any frames odd numbers such as 15.4499999999999989 or labeled scenes than number either.
    I can send you my scene if that would help?
    Thanks very much for your time Ned
    (p.s Or maybe if it is easier you might offer some guidance as to how i can change the action script
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    to allow it to be more like Interactive Thyroidectomy

  • Disable right mouse click and IE6 galleryimg on af:objectImage

    hi,
    Could anyone tell me how I can disable right mouse click and IE6 galleryimg on af:objectImage?

    Hi Jagannath,
    Try like this.. Double click on application -> go to parameters tab, in parameters give WDDISABLEUSERPERSONALIZATION and value 'X'. It will disable user settings, you get window when right click but no user settings available.
    check this for more help...
    http://help.sap.com/saphelp_nw70/helpdata/en/7b/fb57412df8091de10000000a155106/content.htm
    Thanks,
    Kris.

  • How modificate this script from mouse click to release

    how modificate this script from mouse click to release
    package
    * A Colorful Fireworks Demonstration in Actionscript 3
    *   from shinedraw.com
    import flash.events.MouseEvent;
    import flash.system.ApplicationDomain;
    import flash.events.Event;
    import flash.display.MovieClip;
    import com.shinedraw.effects.ColorfulFireworks;
    public class Document extends MovieClip{
    private var _colorfulFireworks : ColorfulFireworks;
    public function Document(){
    this.addEventListener(Event.ADDED_TO_STAGE, on_added_to_stage);
    private function on_added_to_stage(e : Event):void{
    // place the object to the stage
    _colorfulFireworks = new ColorfulFireworks();
    addChild(_colorfulFireworks);
    // add the cover to save CPU time
    var coverClass : Class = ApplicationDomain.currentDomain.getDefinition("Cover") as Class;
    var cover : MovieClip = new coverClass();
    addChild(cover);
    cover.addEventListener(MouseEvent.CLICK, on_cover_click);
    // remove the cover after click
    private function on_cover_click(e:MouseEvent):void{
    var cover:MovieClip = e.target as MovieClip;
    removeChild(cover);
    _colorfulFireworks.start();

    solved close pls

  • Wireless Mighty Mouse Clicks

    Sometimes (about once a week) my mighty mouse wont left or right click but it will move around on my iMac. If I turn the mouse off and turn it back on, it is able to click again. What's causing this interference?

    Hello m:
    Basically a random event like that is - more or less - impossible to trace to a source.
    I would trash the preference file (com.apple.bluetooth.plist) and restart.
    Barry

  • A script that captures the coordinates of the mouse clicks and saves them into a file

    Hello,
    I'm trying to create a cartoon taking a movie (I've chosen blade runner) as base. I've got the real movie and I've exported all the pictures using VirtualDUB. Now I have a lot of images to modify. I would like to modify the actors faces with the faces generated by Facegen modeller. I'm thinking how to make the whole process automatic because I have a lot of images to manage. I've chosen to use Automate BPA,because it seems the best for this matter. I'm a newbie,so this is my first attempt using Adobe Photoshop and Automate BPA. I wrote a little script. It takes a face generated with Facegen modeller and tries to put it above the original actors faces. But it doesn't work very good and I'm not really satisfied,because the process is not fully automated. To save some time I need to write a script that captures the coordinates of the mouse when I click over the faces and that saves them into a file,so that Automate BPA can read these coordinates from that file and can put the face generated with Facegen Modeller above the original face. I think that Automate BPA is not good for this matter. I think that two coordinates are enough,X and Y. They can be the coordinates of the nose,because it is always in the middle of every face. It is relevant to knows how big should be the layer of the new face,too. This is the Automate BPA code that I wrote :
    <AMVARIABLE NAME="nome_foto" TYPE="TEXT"></AMVARIABLE>
    <AMVARIABLE NAME="estensione_foto" TYPE="TEXT"></AMVARIABLE>
    <AMSET VARIABLENAME="nome_foto">br</AMSET>
    <AMSET VARIABLENAME="estensione_foto">.jpeg</AMSET>
    <AMVARIABLE NAME="numero_foto" TYPE="NUMBER"></AMVARIABLE>
    <AMVARIABLE NAME="coord_x" TYPE="NUMBER"></AMVARIABLE>
    <AMVARIABLE NAME="coord_y" TYPE="NUMBER"></AMVARIABLE>
    <AMWINDOWMINIMIZE WINDOWTITLE="Aggiungere_layer - AutoMate BPA Agent
    Task Builder" />
    <AMWINDOWMINIMIZE WINDOWTITLE="AutoMate BPA Server Management Console
    - localhost (Administrator)" AM_ONERROR="CONTINUE" />
    <AMENDPROCESS PROCESS="E:\Programmi_\Adobe Photoshop
    CS5\Photoshop.exe" AM_ONERROR="CONTINUE" />
    <AMRUN FILE="%&quot;E:\Programmi_\Adobe Photoshop CS5\Photoshop.exe&quot;%" />
    <AMPAUSE ACTION="waitfor" SCALAR="15" />
    <AMSENDKEY>{CTRL}o</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="1" />
    <AMINPUTBOX RESULTVARIABLE="numero_foto">Inserire numero FOTO di
    partenza -1</AMINPUTBOX>
    <AMINCREMENTVARIABLE RESULTVARIABLE="numero_foto" />
    <AMPAUSE ACTION="waitfor" SCALAR="1" />
    <AMMOUSEMOVEOBJECT WINDOWTITLE="Apri" OBJECTNAME="%nome_foto &amp;
    numero_foto &amp; estensione_foto%" OBJECTCLASS="SysListView32"
    OBJECTTYPE="ListItem" CHECKOBJECTNAME="YES" CHECKOBJECTCLASS="YES"
    CHECKOBJECTTYPE="YES" />
    <AMMOUSECLICK CLICK="double" />
    <AMPAUSE ACTION="waitfor" SCALAR="10" />
    <AMSENDKEY>{CTRL}+</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="20" />
    <AMSENDKEY>l</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="281" RELATIVETO="screen" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="659" MOVEY="281" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="659" MOVEY="546" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="546" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="281" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMSENDKEY>v</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK CLICK="hold_down" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="131" MOVEY="99" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="99" MOVEY="162" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK CLICK="release" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMINPUTBOX RESULTVARIABLE="coord_x">Inserire coordinata X</AMINPUTBOX>
    <AMINPUTBOX RESULTVARIABLE="coord_y">Inserire coordinata Y</AMINPUTBOX>
    <AMMOUSEMOVE MOVEX="200" MOVEY="200" RELATIVETO="screen" />
    <AMMOUSECLICK CLICK="hold_down" />
    <AMMOUSEMOVE MOVEX="%coord_x%" MOVEY="%coord_y%" RELATIVETO="position" />
    <AMMOUSECLICK />
    and this is a short video to explain better what I want to do :
    http://www.flickr.com/photos/26687972@N03/5331705934/
    In the last scene of the video you will see the script asking to input the X and the Y coordinates of the nose. This request is time consuming. For this reason I want to write a script that captures automatically the coordinates of the mouse clicks. The only thing to do should be click over the nose and the script should make the rest. As "c.pfaffenbichler" suggested here : http://forums.adobe.com/thread/775219, I could explore 3 ways :
    1) use the Color Sampler Tool’s input with a conventional Photoshop Script.
    2) use After Effects would provide a better solution.
    3) Photoshop’s Animation Panel might also offer some easier way as it might be possible to load two movies (or one movie and one image) and animate the one with the rendered head in relation to the other.
    Since I'm a totally newbie in graphic and animation,could you help me to explore these ways ? Thanks for your cooperation.

    These are the coordinates of the contours of the face that you see on the picture. Can you explain to me how they are calculated ? The coordinates of the first colums are intuitive,but I'm not able to understand how are calculated the coordinates of the second one.
    Thanks.
    1 COL     2 COL (how are calculated these values ?)
    307.5000 182.0000 m
    312.5000 192.0000 l
    321.5000 194.0000 l
    330.5000 193.0000 l
    335.0000 187.0000 l
    337.0000 180.5000 l
    340.0000 174.0000 l
    338.5000 165.5000 l
    336.0000 159.0000 l
    331.5000 153.0000 l
    324.5000 150.0000 l
    317.0000 154.0000 l
    312.5000 161.0000 l
    309.0000 173.0000 l
    307.5000 182.0000 l
    Message was edited by: LaoMar

  • Spontaneous Exposé with Mighty Mouse clicking

    All of a sudden my PowerMac G5 will spontaneously go into F9 Exposé mode, showing all open windows, then immediately reverting back to the window I was working in. But then it will repeat this over and over and over and I'm unable to stop it. Eventually it stops on its own, but soon, while I'm attempting to go back to work on something, it starts again.
    While I'm helplessly watching this on my display, my Might Mouse (wired) clicks all by itself, not like a click I would make by pressing on it, but a small internal sounding click. I have the sides of the mouse set to Exposé—All Windows when squeezed, but don't use that function of the mouse, and since it's a pretty specific maneuver that takes a bit of pressure to engage I don't think I could have accidently triggered it, so I don't think that's the cause. I don't even have to be touching the mouse or keyboard, though, for this to happen. I use the original white extended USB keyboard that came with the G5.
    I have tried restarting the machine and that seems to correct the problem for a while, but then it eventually starts up again. It has happened with several apps and several windows open, so I thought perhaps it was some kind of memory issue, trying to do too much at one time, but it has also happened immediately upon start up with nothing opened yet.
    Has this happened to anyone else? Does this mean my mouse is failing, or my keyboard is failing, or both, or is there something else going on? Any suggestions to alleviate this permanently?
    Thanks so much for any help with this!

    I am getting the same problem with my iMac. The mouse (wired Mighty Mouse) begins making a clicking sound and the open window begin going crazy as if I were using F10 for expose'. I have been unable to figure out what triggers it, or how to stop it. The problem happens too rapidly and for too long in duration for me to believe it's because i accidentally hit the side buttons.
    What I have tried is to switch mouses, but this made no difference. I have recently set the mouse settings to turn off button 4, the side button. Don't know if this will work but worth a try. Any other ideas?
    Thanks for any help!

  • Problems with mighty mouse clicking

    Hi everybody, happy New Year first of all!
    Then my problem: I bought an Intel iMac about 1 year ago, and have been using the supplied wired mighty mouse since then. I set it up with left+right top buttons.
    I didn't have a single problem until a few weeks ago.
    First, the "typycal dirty scrolling ball" which seems to be solved by rubbing the ball on a piece of papere with the mouse up side down.
    Second, and most annoying, *the click functions seems to perform worse than before*. I mean, it looks like *I need more pressure now to have the mouse click* (either left or right) on links, icons, etc.
    Result: about half of the times, clicking the mouse (using the pressure I was used to) has no effort, I need to re-click with more intensity.
    Did anybody of you experience the same problem? I cannot understand if it is kind of software problem (say, something that can be solved by some restore function) or a physical one (dirt? But the mighty mouse cannot be unassembled...).
    TIA to all,
    Giopad65

    Hello and Welcome to Apple Discussions ...
    Fist, here are the instructions to clean a Might Mouse: http://support.apple.com/kb/HT1537
    and here: http://www.macosxhints.com/article.php?story=20060210115417864&lsrc=osxh
    Second, go to System Preferences/Keyboard&Mouse/Mouse and make sure your Tracking/Scrolling and Double Clicking is set to your liking. (The System Preferences panel is located in your Applications folder)
    Carolyn
    Message was edited by: Carolyn Samit

  • Noisy mighty mouse click

    I'm using a mighty mouse that came with my iMac in May 2008. Recently the clicking noise when I left click often becomes noisier and clunkier. Any suggestions as to what might be the trouble and solution?

    Definitely.. Applecare. If you can get to a regular Apple store - you'll likely get it exchanged on location... I called in and was told up to 3 weeks (of course, that mouse died like the week after it was delivered). Local store was next day, and AppleStore was same day..
    +3 weeks... and Apple expects headway in the business environment?+

  • Mighty Mouse wireless and marware protection

    Hi
    i'm looking to purchase a bluetooth mighty mouse can any one give me comments about their experience with the macbook.
    As well I'm looking for comments about the marware protection kit for the macbook.
    Thanks for your help
    ben

    i've been using the bluetooth wireless mighty mouse for a little over a week and i've love it to death. a little expensive, but worth it. some people have complained about problems with right clicking but i havent exp'ed that at all. look under the bluetooth forums, but again, you'll find mostly complaints, but i would repurchase it again for what thats worth.

  • Mighty Mouse click happy

    I'm using my Mighty Mouse for the first time today. I noticed lots of erratic behavior on my desktop and between open windows, then I picked up on what sounded like repeated clicks. Sure enough, my MM was rapidly and repeatedly clicking on its own, without any prompt from me. It appears to be sporadic, but I finally had to disconnect it in order to get some work done! Is this new-user error or what??

    I had 2 new mighty mice doing the same thing. But not
    only are they clikcing - they are also
    activating/deactivating exposé repeatedly. Both
    systems were running at the same time when this
    started. I have an airport extreme network.
    Same issue with my mighty mouse on my iMac G4: When I touch the upper case surface with my fingers (not fingertips but complete fingers) -without actually pressing down the housing- the mouse performs the side-button action. I called Apple and they sent me a replacement mm, but it has exactly the same erratic behavior.
    Both mice work fine with my other Macs by the way.
    So I deleted my harddisk completely, performed a PRam and NVRam reset, reinstalled 10.3, reinstalled 10.4, but absolutely nothing helped.
    The issue apears as soon as the Mac is switched on and recognizes the mouse - even before OSX is starting to boot.
    I hope there will be a patch for this bug soon!!!!
    iMac G4, PowerBook 12" 1.33   Mac OS X (10.4.4)  

  • 3 Right Mouse Clicks and POOF!

    I've had this problem since the day I bought this Mac and it's driving me nuts!
    If I perform a right mouse click on a file or folder in order to use the Get Info command it works fine the first two times I do this. However on the 3rd time I use the right mouse button all open programs minimize, Finder shuts down, all the icons on my desktop disappear for a few seconds including those for hard drives. At first I just thought this was a faulty Mighty Mouse but I've now replaced that mouse with an M$ one and the problem is still there.
    Anyone know why this is happening and what I can do to stop it as it's really irritating!!

    It is a common error. Karn has picked up the confusion between iMac G5 instructions and iMac Intel instructions. It is now very important to know which iMac model the person has, because they are not the same and following the instructions for one can screw things up for the other.
    The iMac G5 has a SMU and these are its instructions for resetting; iMac G5: How to Reset the SMU, Included is this Step 4 instruction; Plug in the power cord while *simultaneously pressing and holding the power button* on the back of the computer.
    The iMac Intel has a SMC and these are its instructions for resetting; Intel-based iMac: How to reset the System Management Controller, Included is this Step 4 instruction; Plug the power cord back in, *making sure the power button is not being pressed* at the time. Then reconnect your keyboard and mouse to the computer.
    I have searched the knowledge base and find no new instructions for the Aluminum iMacs, so I have to assume that the instructions have not changed for the new iMac Intel models.

  • Adjust Image Problem - Image Changes when Mouse Click is Released.

    I love the fact that images can be adjusted after insertion into a page (Things like brightness, contrast etc). The problem I have which is very frustrating is that while any control on the Adjust Image panel is selected and being edited (click and hold mouse button to move a slider), the images' contrast and brightness change (perhaps as if to indicate selection?). This is inherently a problem since it's these very characteristics you're trying to edit. So you adjust the image to your liking but when you release the mouse button, then image then suddenly changes and is no longer the way you want it. Anyone else seen this problem and have any helpful suggestions?

    I have been trying to replicate your issue using  different format images..but I did not succeed.
    If its not images and types that cause the  problem,  then the inference is that it the application.
    The usual advice... unless you  want to contact tech support and present your problem to them - is to uninstall iBA with Appdelete or similar rather than dragged to the trash, and then do a reinstall.
    This presupposes you saved everything/copies etc,.
    BTW, I seldom use the various sliders, with practice using the LEVELS can be more effective, have you tried  this option?

Maybe you are looking for

  • Regarding credit memo and debit memo in AR and AP

    HI All, Can any one explan the concepts of the debit memo and credit memo in AR and AP with example. So that i can understand the exact logic when it's in payble or receivables regards Sujeet

  • Quicktime Will Not Close Open Windows

    After I record a video Quicktime refuses to close any windows from those recordings.  When the red X is clicked quicktime will lag out for a few seconds at the end of which the window has not been closed.  The only way to get the window to close is t

  • Can't connect to homesharing

    It will not let me sign in to my apple id to connect and use apple tv and I know i have the right email and password

  • TV miglia max and iMac G4: problems

    Hi all, I have a problem with my Mac G4 1Ghz. I brought the new Tv Miglia Max but I can't install it( it doesn't finish the guided installation). My model should have 3 USB 2.0 ports but it seems the computer doesn't "see" tv miglia Max. Someone coul

  • How to control the permission for reports in share folder?

    Hi Experts, In OBIEE 11.1.1.6.0. I have created two folders in share folder,one is sales folder which contains some sales reports,and the other is dashboard folder which contains some dashboard pages that have these sales reports. So I want to new us