T500: Fix for Faster mouse/trackpad

For the longest time, I had wished my t500 touch pad would go faster than the max that vista will allow.. and I finally figured it out.  If you run regedit, and then look under the current user -> control panel -> mouse menu, there is a mouse speed value.  Change it from 1 to 3 or 4, and your good to go!
 Moderator note: Type added to subject line for clarity.
Message Edited by Agotthelf on 02-07-2009 08:36 AM
Thinkpad T500 - Intel Core2 P8400 (2.26GHz), 4 gigs of ram, 160GB/7200rpm hard drive, ATI 3650 GPU, WSXGA+ panel

I have IMac using Mavericks. I had a problem with an erratic magic trackpad and with the magic mouse. Not all the functions that I had set up were working and sometimes  there would be a partial freeze. I think I have resolved the problem by doing the following:
1. Go to blue tooth and disconnect the trackpad and then pair it. Then do the same for the Magic Mouse.
2. After they are reconnected, go to System Preferences and open up Trackpad and undo all the functions and then turn them on again. Do the same with the magic mouse.
So far, this is working.
(I also moved a cordless phone further away, but I don't think this made any difference.

Similar Messages

  • Possible temporary fix for a glitchy trackpad

    After being glitch free for a while my trackpad started to annoy me recently. About a month ago, I was trying to find a fix for the infamous SMS cold start issue and as a by-product cured my trackpad. Well, that was temporary but anyways. I was not quite sure what was the cure since I tried a lot of things (including resetting PMU and NVRAM) but finally i was able to identify it:
    Delete
    /System/Library/Extensions.kextcache
    /System/Library/Extensions.mkext
    and reboot. These are two kernel extension cache files and will be rebuilt upon reboot. As usual, be careful when working with system files.
    So, if you have a glitchy trackpad you might want to give this a try. Last time it fixed my trackpad for 2-3 weeks, but your milege may vary.
    PowerBook G4 15'' 1.67GHz   Mac OS X (10.4)  

    For the first time since I got my PB over a year ago, my trackpad started behaving erratically, possibly related to the 10.4.5 upgrade. Resetting the pad by holding my palm over it would help for awhile, but had to be done several times/day.
    This seems to have done the trick for me, thanks.
    -Dan

  • Any fix for MS mouse scrolling issue?

    Hey there. I've somewhat recently come into a problem where my Microsoft wireless mouse won't scroll through the iTunes library with the scroll wheel.
    I've done other searches, I've seen others with the same problem, but no solutions.
    Is this a permanent issue between the Microsoft mouse and the iTunes program that we have to wait for an official fix, or did something go wrong in my installations and I can fix the problem myself? (I have the newest IntelliPoint drivers and the newest version of iTunes).
    The problem wasn't evident in XP, so it's probably a Vista vs. iTunes thing, but I wanted to make sure I wasn't doing something wrong or if there was an easy fix for it.

    ***** to have to buy a new mouse to fix the problem, I like how this mouse feels and moves (sigh..I love censors)
    I guess when this one is about ready to be replaced I'll turn to logitech, but hopefully some sort of patch or fix will be introduced to let MS mice scroll in iTunes lol
    Message was edited by: iwuv10s

  • Can I ask for faster mouse pointer speed???

    I can see many Apple program that providing us for feedback but not OSX itself.
    I try to tune my mouse in the speed that fit my style: no good. That is slow even I turn all the way to fastest. Then I need to "buy" a 3rd party program to speed up my mouse...... that's crazy.
    Can we ask for an option to let user choose faster speed?

    You can use the appropriate contact point listed in the bottom right corner of this page
    http://www.apple.com/contact/
    Here's a solution, without buying any software.
    http://www.macworld.com/weblogs/macosxhints/2006/03/turbomice/index.php
    Isn't Unix great???

  • Custom UIView not receiving touch events for fast mouse clicks in simulator

    I'm having a problem in the simulator where if I click fast in a UIView inside a table cell that is setup to receive touch events, it doesn't receive them. But if I click slow (holding down the button for a little bit) the view gets the touch events. I can't test it on the device. Is this a known problem in the simulator?
    Thanks.

    Hi George,
    Thanks a lot for your quick response and jumping to help.
    I am so frustrated that I did not get touch event for the custom cell.
    I also tried your solution for a custom UIImageView, I put the codes of PhotoView.h, PhotoView.m and TestTouchAppDelegate.m here: Please help to look into it for me.
    // PhotoView.h
    // Molinker
    // Created by Victor on 6/18/08.
    // Copyright 2008 _MyCompanyName_. All rights reserved.
    #import <UIKit/UIKit.h>
    @interface PhotoView : UIImageView {
    CGPoint touchPoint1;
    CGPoint touchPoint2;
    @property (nonatomic) CGPoint touchPoint1;
    @property (nonatomic) CGPoint touchPoint2;
    @end
    // PhotoView.m
    // Molinker
    // Created by Victor on 6/18/08.
    // Copyright 2008 _MyCompanyName_. All rights reserved.
    #import "PhotoView.h"
    @implementation PhotoView
    @synthesize touchPoint1;
    @synthesize touchPoint2;
    - (id)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
    // Initialization code
    self.userInteractionEnabled = YES;
    return self;
    - (void)drawRect:(CGRect)rect {
    // Drawing code
    // Handles the start of a touch
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    UITouch *touch = [touches anyObject];
    touchPoint1 = [touch locationInView:self];
    // Handles the end of a touch event.
    - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
    UITouch *touch = [touches anyObject];
    touchPoint2 = [touch locationInView:self];
    if(touchPoint1.x>touchPoint2.x)
    //move Left
    NSLog(@"Move Left");
    if(touchPoint1.x<touchPoint2.x)
    //move Right
    NSLog(@"Move Right");
    - (void)dealloc {
    [super dealloc];
    @end
    // TestTouchAppDelegate.m
    // TestTouch
    // Created by Victor on 6/17/08.
    // Copyright _MyCompanyName_ 2008. All rights reserved.
    #import "TestTouchAppDelegate.h"
    #import "RootViewController.h"
    #import "PhotoView.h"
    @implementation TestTouchAppDelegate
    @synthesize window;
    @synthesize navigationController;
    - (id)init {
    if (self = [super init]) {
    return self;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Configure and show the window
    //[window addSubview:[navigationController view]];
    UIImage *myImage= [UIImage imageNamed: @"scene1.jpg"];
    CGRect frame = CGRectMake (0, 20, 300, 400);
    PhotoView *myImageView1 = [[UIImageView alloc ] initWithFrame:frame];
    myImageView1.userInteractionEnabled = YES;
    myImageView1.image = myImage;
    [window addSubview:myImageView1];
    [window makeKeyAndVisible];
    - (void)applicationWillTerminate:(UIApplication *)application {
    // Save data if appropriate
    - (void)dealloc {
    [navigationController release];
    [window release];
    [super dealloc];
    @end
    Message was edited by: Victor Zhang

  • Mouse/Trackpad/Trackpoint acceleration: How to get it right?

    I fail to get the acceleration for my mouse, trackpad and trackpoint right. It seems like having 100 interdependent knobs and trying to find some secret combination of values.
    I decided to use xset and xinput. For example:
    xset m 5 1
    xinput --set-prop 'device1' 'Device Accel Profile' 2 # Polynomial
    xinput --set-prop 'device1' 'Device Accel Constant Deceleration' 3
    xinput --set-prop 'device1' 'Device Accel Adaptive Deceleration' 2
    xinput --set-prop 'device1' 'Device Accel Velocity Scaling' 5
    ... 'device2' ...
    ... 'device3' ...
    After having tried a bazillion of different values in different combinations, I'd be extremely glad to receive a KISS recipe on how to get it right.
    Last edited by Markus00000 (2012-04-09 05:14:20)

    Hi Hickrock,
    1) Your material is 16 by 9 - drop a Compressor preset on there and it will recognise this and encode 16 by 9 which DVDSP will then recognise. Not sure how you got 4 by 3 in there unless you manually changed it to this.
    2) Get a bitrate calculator (Google it) and calculate the maximum allowable bitrate - depends on length and type of audio. I generally never use CBR and haven't noticed the difference.
    3) I usually get flickering on photos and graphics which I overcome with gaussian blur. Your flickering might be something to do with fields - try setting field dominance in Compressor to none rather than auto. Also switch on Frame Controls.
    This was just a fairly quick answer, there is more to it and I'm sure others will chime in.
    I personally have been having issues with Compressor - very good quality but occasional odd pixellation. The only reliable solution I have found, and it has been much discussed on this forum, is to use the Cinemacraft MP plugin.
    Good luck

  • Adobe Flash Player 10 Fix for WinXP and Vista, IE7, IE8, Firefox, ect.(New Fast Fix)

    (This is a possible solution for most users) I have found that inside the folder C:\WINDOWS\system32\Macromed\Flash (WinXP Home/Pro) (Computer > C: Drive > Windows > System32 > Macromed > Flash for Vista) there should be a file named FlashUtil10b.exe (IF NOT YOU SHOULD UPDATE AS SPECIFIED!) (or FlashUtil10a.exe or for older versions something similar depending on your version), which is the update utility for flash player. Click on this and if it updates, you will have to restart your computer. This should fix any missing files, and update you to the latest version.
    On a side note to all those who read this, I downloaded and installed 5 different times, the same version, from different websites, all for the "new" flash version, and they didn't work (this also included trying to update Shockwave player itself). Apparently, going directly to the website and downloading a new version of Adobe Flash Player, and installing, doesn't uninstall the older version, (though it says it does nor does the uninstaller work directly from the website) nor fixes the problem. I assume they are aware of this problem, because they included this bug fix in revision 10b. This fix should work for those of you whom cannot view/see flash images as well. There also appears to be a bug/reference problem with the installation of IE8 giving the error "Missing Shockwave Decompression XTRA", when trying to play a Shockwave/Flash file, which seems also to affect Firefox and other browsers. It doesn't recognize that the folder or files that it needs in it, exist. I never had his problem before, until IE8 was installed. I checked which version I had in the system32 folder and found this updater built in to Adobe. Version 10a does NOT automatically update, but version 10b includes this fix. I currently had version 10a when I received this error, and began digging for a solution. Doing the update as described above fixed the problem, and updated it to version 10b.
    The new flash version 10b has some new features, such as volume control, auto-updating, and several rendering options for those who may have a faster or slower computer/video card.
    I found this works great for XP users but unsure of the Vista users. The process is the same  for Vista and the update should still work the same, as long as you run it as Administrator, I assume. I have this also posted on wwwdslreports.com at http://www.dslreports.com/forum/r22115254-IE-IE8-and-Adobe-Flash-Question and here http://www.dslreports.com/forum/r22361930-Adobe-Flash-Player-10-Fix-for-WinXP-IE 8-Firefox-ect. It appears to work for everyone so far. I have not heard of any problems from users with this problem running the RC (Release Canidate) for Windows 7 yet.
    I hope this works to your benefit.
    Please leave a reply to help Adobe and other users know if this fix worked for you or not. If not, please explain what you did, and the effects your seeing, including operating system, site of the flash file trying to view, browser type (ex. IE6, IE7, IE8, Firefox, Opera, ect.), and I will try to help you as best I can.
    (I would strongly recommend those not using IE8, or Firefox 3.5, get the updated versions)
    If your looking for uninstallers go to this site: http://kb2.adobe.com/cps/141/tn_14157.html
    If your looking for a true full install, you can download this developer version for Windows and Mac: http://download.macromedia.com/pub/flashplayer/updaters/10/flash_player_update2_flash10.zi p (44MB) (If you download this, I would recommend you still follow my instructions for the Flash Utility before restarting your computer.)

    I would recommend all users having problems try the above solution first.
    I have posted this on a couple of websites, and so far it has fixed everyones problems.
    Firefox 3.5 Beta 4 has Adobe Flash Player coding built into the browser so that it not only loads faster but works better.
    You still need to have the Adobe ActiveX plug-in and Adobe Flash Player for both browsers.
    I would also recommend you download Shockwave Player 11.
    IE8 has tried this as well, but it still has a couple bugs in it.
    If you have IE8 or FireFox 3.5 Beta 4, and you are still having problems, then I recommend that you go to www.windowsupdate.com and get all of the latest updates (including SP3), then try this fix again.
    Your auto-updater built into windows (If you even have it on) doesn't always pull down every update available for your computer. It only pulls down the manditory ones.
    Sometimes you HAVE to go to the website and manually get them yourself. I recommend when you go to the website, you click on custom install and pick every last one of them to install, which includes, hardware and software fixes for your computer.
    What a lot of people don't know is that when you have installed and tried all of the recommended fixes that Adobe gives you, and it still doesn't work, is that you are having registry conflicts within your Operating System (OS ex. WinXP, Vista, Linux, ect.), and that it is not the Adobe software at all.
    Those are usually repaired by making sure your computer stays up to date.
    The fact is the computer world is changing so rapidly that everyone can't keep up. You have to check for updates weekly.
    If you fall behind on those updates, then you start having problems with your computer and/or software.
    One problem then can turn into many and people get frustrated when something all the sudden just quits working.
    Take a day or two at least once a month, and make sure you update and maintain your computer.
    This includes disk defragmenting, disk cleanup, and making sure you have all the lastest updates.
    You can get to Disk Defrag, and Disk Cleanup by going to Start, All Programs, Accessories, then to System Tools.
    I would do Disk Cleanup first, then Defrag.
    I hope you take this advise into consideration, and that it is very helpful for you.
    If you find this useful, please come back and reply to this forum, and let everyone know so that others will be encouraged to do this.
    Thanks and goodluck, from another user like you.

  • Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps.

    Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps. This problem started ever since I upgraded to version 5.

    I have downloaded and used the iPod Reset Utility, alot that did. My current state is iTunes on my XP Home with SP3 sees the iPod. When I drag a song to the iPod, the Sync message appears for about 5 minutes, then the Apple symbol appears. But no song has been transferred to the iPod.
    I tried to tap into the XP iTunes database from my iBook, but although it acted like it would add the XP library to the iBook library, it did not. I've got 19 Gs of songs on the XP. If I have to load each song from its original CD to get it on my iBook I'm going to start looking for some other app or device so that I can listen to my music.
    It is a shame, in the old days, Apple techs use to look at what was going on, now it appears they don't, so they never know they have problems until Apple's profits fall.

  • Magic Mouse scrolling lacks "rolling feature" for fast finger swipe

    I recently purchased a Magic Mouse for my iMac (27" 2.8 GHz Intel Core 2 Duo with Leopard 10.5.8 OS). I've noticed that the scrolling does not have one of the features shown in the System Profile settings for the mouse scrolling. When I move my finger quickly to scroll using a swiping motion (removing my finger from the mouse at the end of the motion), the scrolled content does not continue to roll on for a bit. Instead, it just stops. This is not a serious problem, but I would like to enjoy the full functionality as advertised by Apple. Anyone know what I should try to fix this? Thanks.

    Hi Marilyn:
    I dredged this up from my dim memory banks:
    http://support.apple.com/kb/HT3925
    You are correct, that article indicates that the momentum feature is only available with OS X 10.6.
    If you have not done so, you might want to install this update (you probably already have it):
    http://support.apple.com/kb/DL951
    Barry

  • Mouse, trackpad or what else to optimal control for Logic ?

    mouse, trackpad or what else to optimal control for Logic ?
    give precise models if you have suggestions ty

    skanner21 wrote:
    i just talk to an apple store guy who told me magickpad was a pain in the *** and very tiring comparing mouse dealing with logic and other audio editors.... ?? so hes stupid  ? how can you explain this opposite opinion please ?
    I don't know if that guy at the Apple store is stupid because frankly, I don't know him.
    But seriously, if he can work better with a mouse then he should use one. I'm sure there are still some people out there who don't like to send email and type a letter with a typewriter then put that piece of paper into another piece of paper (envelope), carry that to the post office which puts those pieces of papers from one truck to another to finally get it to their destination. You get the idea.
    The bigger issue is that people don't realize that they get accustomed to a device that is a a compromise to begin with, the mouse. Just think about it what it takes to scroll down in a window on your screen.
    In perfect world: You would take your hand and scroll down the window (or tell the computer the command)
    Instead, you take your hand, grab a thing (A) that has nothing to do with the window. Now you move that thing A and you see that it corresponds to another thing (B) on the screen, the cursor. No you have to move that second thing on to a third thing ( C), the scrollbar. And now, instead of moving down the scrollbar, you have to move it up in order to move the actual page down. How many un-intuitive (or counter-intuitive) steps does the brain have to learn and process? This is insane.
    People are used to it and they don't question it as long as there is no better solution.
    Instead of moving a thing that moves a thing that moves another thing. You just move THE thing. The original solution is touch the thing that you want to move. That's why kids use the iPad or iPhone with no problem. It is intuitive and you don't have to learn a compromise. The Trackpad is at least half way there.
    Remember when Apple changed the direction of the scroll bar recently. Another great example, where people get p**** when something get easier but they want to keep their old way "moving something up in order to move something down".
    I don't say that the Trackpad is perfect (it has other issues) and yes it requires some "un-learning" of old habits. It is still a compromise. My first computer was a Commodore64 about 25 years ago and I used mice all those years but I didn't' have a problem dropping that "thing" in a second.

  • A fast automatic tag fixer for owners of Zen and other tag based players

    Fast automatic tag fixer for owners of Zen and other tag based players.
    I've written a simple freeware utility for fixing mp3 tag discrepancies. It is intended for use before uploading a bunch of albums to a tag-only media player. There's like a million of such programs out there, but this one is based on my exprience with the Creative Zen player, so it could be useful for fellow owners of the device.
    First, the utility scans mp3 album folder tree looking for tag inconsistencies and suggesting corrections. After that you can review (and cancel/modify if needed) the corrections and apply the changes.
    The detected tag errors can be corrected either manually or semi-automatically with the integrated Discogs search. There's a tuneable compilation processing feature, which helps keep compilation albums in one piece on your player.
    You can check the utility out here http://taghycardia.narod.ru/english.html
    Feature suggestions, bug reports welcomed.

    The free program has been vastly updated since the last post.
    Now, it can find and embed cover art for mp3 albums automatically, or it can do the opposite, remove cover images from mp3 files if you need to save space on your player or mobile device. In addition, there is an ability to correct wrong track order automatically and get exact tracklists from Discogs.
    The URL is updated, too: http://taghycardia.info

  • I have a macbook from early 2008, and when I sign onto safari I get an error message for fast browser search plugin.  After that error comes up my computer freezes and I have to force it to shut down.  Does anyone know what that means and how I can fix it

    I have a macbook from early 2008, and when I sign onto safari I get an error message for fast browser search plugin.  After that error comes up my computer freezes and I have to force it to shut down.  Does anyone know what that means and how I can fix it?

    Means you have an incompatible Safari extension installed. Look in the /Home/Library/Safari/Extensions/ folder for the offending plug-in and delete it.

  • I have an older iPod Touch. I charge it but the battery drains real fast. Is there a fix for that?

    I have an older iPod Touch. I charge the battery but it drains real fast. Is there a fix for this? How much would it be to replace the battery? I love my iPod but the battery is always dead.

    Hello,
    I am currently an owner of an Ipod Touch 4th generation, running IOS 6.1.2. I understand you are having problems with your Ipod/Ipad/Iphone, so I will try to find a solution to your problem.
    Its an Old Ipod, give me a break... just get a new one, or leave it always plugged in
    You could also get a new battery (but its not worth it... just buy a whole new unit)

  • Possible temporary fix for mouse scroll wheel problem in Lion

         This is a potential temporary fix for those users of Lion who are unable to fix the reversed mouse scroll wheel issue. I myself have a Microsoft Arc Mouse (not the touch version but the original version) and when I went into the mouse system preferences there was no checkmark box option to return the scroll wheel to its original configuration. When I called Apple about it I was told it's an issue with Lion not recognizing the mouse as being able to reverse the scroll wheel and that Microsoft will need to update the firmware to allow for this change. On a whim, I tried out my wife's Logitech mouse (can't remember the model but it's a fairly recent one) and checked the system preferences. This time there was the checkmark box to allow the scroll wheel to be returned to its original configuration and I could use the scroll wheel as normal. When I plugged my Arc Mouse back in, the scroll wheel had reverted to its original configuration of rotate the wheel down for down scroll and up for up scroll.
         So, for those of you who are unable to correct your scroll wheel through preferences, you might want to try plugging in another mouse, making the correction in system preferences, and then plug your original mouse back in.

    I mean it. Apple makes major changes in the way things have worked for years, then makes that change the default, causing 1m people to struggle. Bad Bad App le.
    There other changes like this in Lion as well, which are arbitrary and are "App le" policy now, which even App le themselves do not follow! (e.g. Cmd-Delete for "Don't Save" in a few App le applications, where 900 million people have used Cmd-<first letter of button> already, for years)
    And yes, I did have to go next door and borrow a mouse. "Why?" they said... "I have a Mac" I said. "<laughter> get a real computer" they said. App le does itself no favors by pulling this stuff.
    Many of us cannot buy new equipment when arbitrary changes are made, and "get a new driver" is a slap in the face, especially when such changes as Reversing scroll for many-millions could easily be done by making the "new way" an Option, not a default.
    Don't get me wrong, Mac and iPhone etc are way ahead of MS and all, but the rabid arrogance inside App le is App aulling.

  • My mouse/trackpad are completely out of control. The cursor/arrow is flying all over the screen and closing/opening windows. What is the solution to this? Downloading windows for Mac?

    So far I'm dissapointed with Mac O/S .....so many areas lack common sense, require unnessary extra clicks and is not as customizable as Windows. It's like Apple thinks you are a child and not entitled to choose for yourself so that they can control your info for you.
    The mouse/trackpad problem is a major issue that Apple should be proactive in offering a solution for. If anyone has a solution to this I'd be greateful to hear it.
    Thanks, 

    Is this the first time you're using a Mac?
    If so the learning curve is somewhat steep - but, if you put in the time and use this knowledge base whenever you run into issues you'll be up to speed soon enough.
    With regards to the trackpad/mouse, you can adjust the sensitivity by:
    1. Click the Apple Logo on the top left hard corner of your screen
    2. Click System Preferences
    3. Click Trackpad
    Adjust the tracking speed to your specifications.
    Also familiarise yourself with the gestures (activate the ones you can remember)
    To go back to the menue by clicking Show All
    4. Click Mouse
    Adjust your mouse settings to your specification.
    And why use mac?
    It just works...
    (most of the time ;p)

Maybe you are looking for

  • Satellite M40-225 and Vista PCMCIA driver

    I lost my original disks for my M40 so bought a copy of Vista to install on my computer, when I first installed it the computer would not start up so I looked on the internet and it seems there is a conflict with the PCMCIA drivers and Vista. I follo

  • Where can I see output from ClassInitialize and ClassCleanup

    Hi, If I write TestContext.WriteLine("Some output") or Console.WriteLine("Some output") inside a test method, i see an "output" link in the Test Explorer and when I click it I can see the output "Some output". This is also true when I do it from a [T

  • Web Banners

    Are there any good tutorials on creating Web Banners in Photoshop CC 2014.

  • NWBC problem displaying SAP ABAP transactions

    Hi, I was trying to configure NWBC and I was able to connect to the system and see the transaction available on the role assigned to the user, under that role I assigned SAP standard transactions, BSP applications, WebDynpro applications and Web page

  • Migration with Goldengate

    Hi, We want to migrate our SAP system from Oracle 9i(Solaris) to SQL 2005(Windows). And export time with r3load is too high. Do you have any information about GoldenGate Trasactional Data Integration tool.? Muhittin Çelik