How do I keep my cursor from flying to a random corner of the screen when I lift the mouse?

My cursor contantly jumps to a random corner of the screen when I do a large movement or lift the mouse. Can I fix this?

You can first do a SMC and PRAM reset. You can also restart in Safe Mode to reset some caches. However first I would look at the preferences for the mouse in System Preferences.
SMC RESET
Shut down the computer.
Unplug the computer's power cord and all peripherals.
Press and hold the power button for 5 seconds.
Release the power button.
Attach the computers power cable.
Press the power button to turn on the computer.
PRAM RESET
Shut down the computer.
Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
Turn on the computer.
Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
Hold the keys down until the computer restarts and you hear the startup sound for the second time.
Release the keys.
Roger

Similar Messages

  • How do i keep my cursor from jumping around when i am typing

    how do i keep my cursor from jumping around when i am typing [email protected]
    == This happened ==
    Every time Firefox opened
    == none

    Check your settings in System Preferences >  Trackpad
    Try a different Tracking speed.
    Sometimes just cleaning the trackpad can avoid erratic cursor behavior.
    How to clean Apple products

  • When in organizer how do I keep my cursor from jumping all over the place?

    When I am working in Organizer 12, My cursor jumps all over the place and the screen keeps repositioning itself.  It is infurating and I can't get any work done. New desktop iMac using Marevick 10.9.1  and wireless mouse and track pad both slowed to lowest level.  Also tried using a tethered mouse but no different.  Anyone else have this problem.  Is it an Apple problem?

    Is it a 'Magic Mouse'? If so that's why, there are many reports that it is badly behaved in the Elements Organizer. If not, do you have another mouse you could try it with (to rule out a hardware problem)?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • How do you keep junk mail from appearing even after I have hit the "junk" button when it appeared the first time?

    I have several email accounts that come to my mac.   When junk appears I hit the junk button.   Does it take awhile to train the junk or is there a way to set up mail so that it automatically goes to junk and does not appear at all in my inbox?
    It's so time consuming to get rid of this stuff.
    Thanks for any suggestions.
    Grammynancy

    Hello, it does take time to train it.
    You can setup rules if there's any constancy, like I find that 99.999% of mail from yahoo is junk, so I have a Rule setup to just get rid of it permanently, I never see them at all...
    But you could have it be If Subject contains Ciagra, Perform the following functions, Mark as Junk... or whatever.

  • How do I keep my Imessages from being viewed on other devices under my apple ID?

    How do I keep my Imessages from being viewed on other devices under my apple ID?

    No, you can authorize any number of email addresses on your Apple Id and then select one of those to use as an alternate Send and Recieve for Messages. It isn't necessary to use seperate AppleIDs. I use my phone number on my iPhone and an email address on the iPad.

  • How can i keep my music from my iPhone and sync it my new macbook? Only purchased music seems to be available to sync, even though the rest of the music was uploaded from CD's on my  last laptop.

    Hi, I have changed from an old laptop to a macbook air. how can i keep my music from my iPhone and sync it my macbook? Only purchased music seems to be available to sync, even though the rest of the music was uploaded from CD's on my  last laptop.
    As I can't upload CD's onto the Macbook Air, how do I keep the existing music on my iphone syn onto my new macbook without deleting all the cds on the iphone??
    Many thanks!

    Hi RaulRod,
    Are you pressing the Sync button to transfer music after connecting your iPhone or do you have the option checked to 'Automatically Sync when the iPhone is connected?'
    Have you tried manually dragging and dropping music from your library into your phone?

  • How do you keep your message from appearring on a locked screen

    how do you keep your message from appearring on a locked screen

    Go to SETTINGS --> NOTIFICATIONS --> MESSAGES
    Change "View in lock screen" to OFF
    That should sort it for you.

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites?

    Question
    Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites? All the garbage, it lets sail right in, but my bank accounts and library accounts are not allowed. Why is this? I have looked in the help section and tried the permissions manager, but when I type about:permissions in the location bar, I receive the following error, "The URL is not valid and cannot be located." Thanks for any useful information.

    Thanks for responding. Sorry I wasn't very precise. When attempting to navigate to one of these sites, a message at the top of the screen appears, "Firefox prevented this page from automatically redirecting to another page." Then there is a dialog box which says, "Allow." Once I 'allow' it, the page I'm trying to open does so. This only occurs with certain pages, and usually pages that I need open without any computer interference. I hope this clarifies things. Again, thanks for taking your time to respond.

  • How do I keep my music from stopping when my ipad autolocks?

    How do I keep my music from stopping when I close my ipad or it autolocks?

    My wife has the same problem. I believe I found the solution. Activate "do not disturb" in settings - do not disturb - manual. Make sure to also go to allow calls from and set it to no one. A moon will appear in the status bar. You will see notifications of missed calls but it does not interrupt Pandora. Let me know if this works for you.

  • How do I keep my texts from showing up on my daughter's macbook air?

    How do I keep my texts from showing  up on my daughter's MacBook air?
    jmacrdldn

    hello,
    go to iMessages on your daughters computer.
    in the top left go to messages and select preferences.
    in accounts tab. next to where it says your apple ID click sign out.
    this should resolve your query, please let me know how you get on.
    if you do not have access to your daughters computer I would suggest changing your apple ID password.

  • How do I keep my iPad from switching back and forth from my Apple ID to my husbands Apple ID?

    How do I keep my iPad from switching back and forth from my Apple ID to my husbands Apple ID?

    Your question confuses me because there is no way that the iPad can switch Apple ID's without user input. Where are you seeing evidence of this?
    If you are seeing app updates that require your husbands ID, that's because those apps were purchased with his ID and will always require his ID and password for updates.
    If you are seeing his ID elsewhere, explain....

  • How do I keep my installer from trying to update with Photoshop instead of installer? Quark can't update because the installer opens Photoshop which doesn't recognize the file and I'm not given the option to choose anything else.

    How do I keep my installer from trying to update with Photoshop instead of installer? Quark can't update because the installer opens Photoshop which doesn't recognize the file and I'm not given the option to choose anything else.

    1. Sync wasn't intended to be used in that manner. You would be better off carrying around a USB Flash Stick with Portable Firefox for use on "strange" PC's.
    2. You could open the "Library" {Ctrl + Shift + B} and highlight all those bookmarks and then delete them all at once. But that would also delete all the other bookmarks, and it isn't foolproof. All another person would need to do it to '''''restore''''' a bookmark backup file that has your bookmarks. Beyond that, a new Profile could be created and then the current Profile deleted; but that's "messing with" someone else's computer - an action that is worthy of terminating a friendship over, IMO.
    And if that "public" computer was set up properly, Sync should have been disabled.

  • How do I keep my iPad from shutting down?

    How do I keep my iPad from shutting down?
    LB

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Note:
    Also consider Deleting any Apps you have Purchased / Downloaded but you now never use..

  • How do I keep my teens from changing their apple ID passwords?

    How do I keep my teens from changing their apple ID passwords?

    you can't really even if you block them found doing so from their phones then
    they can go to this page from any computer or phone with a web browser
    https://appleid.apple.com/

Maybe you are looking for

  • How to delete a single request from DSO in BI 7.0

    Dear Experts, Could you please tell me how to delete a single request from DSO? I mean, in DSO if we delete one request it also delete the requests which are above it. But i don't to delete the above it. Please suggest me this issue. Regards, Prathap

  • IPod Shuffle stop working after upgrade to iTunes 7.02

    I upgrade to iTunes 7.02 after it prompted me so many times. My Ipod shuffle has 512MB, somehow iTunes 7.02 format it as 34GB, yes, 34GB!! I wouldn't mind it so much if it still works, but it doesn't. What I have tried so far, I uninstall 7.02 and pu

  • TypeError: Error #1006: getInstance is not a function.

    I having some problems implementing Flex for the first time. At the moment I'm getting TypeError: Error #1006: getInstance is not a function. I suspect that I'm missing a library or something in the compile but I don't know how to resolve it. When I

  • Mts-file in premiere pro cs6

    I inport a videofile  .MTS  in premiere pro cs6  but the audio are not there only the picture.  What shal I do?

  • How to change "Open With" default

    When one has, say, a .tiff image stored in the Documents folder how does one change the "open with" default? For instance, if Photoshop is given as the default, how does one change this to Preview?