image
image

Go Back   macosx.com > Mac Help Forums > HOWTO & FAQs

Reply
 
Thread Tools
  #1  
Old October 5th, 2001, 12:01 PM
swizcore's Avatar
Help Guide Coordinator
 
Join Date: Sep 2001
Location: Michigan USA
Posts: 336
Thanks: 0
Thanked 0 Times in 0 Posts
swizcore is on a distinguished road
How-to Increase your mouse's MAX speed...

If you run your monitor res at a fairly large setting then you may be dissatisified with your mouse's tracking efficiency.
This will tell you how to adjust the maximum speed of your mouse to better meet your expectations.

You do not need to be logged in as root to perform this mod.
For modifiction of the variable I will use the app "TextEdit". Open TextEdit from your Applications folder. Press "Command+O" to open a document.
In the "Go to" location type this:
/Users/your_username/Library/Preferences/.GlobalPreferences.plist

The location is case-sensitive and don't forget the little period before GlobalPreferences.plist. It is invisible and will not be found without that initial period.

Now you should have this file in front of you:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">

Blah,Blah,Blah-- Lots of variables in here, Blah, Blah, Blah--
Look for this line near the bottom of the document:

<key>com.apple.mouse.scaling</key>
<real>1.700000000000000e+00</real>

Just alter the number to what you would like your new speed to be and save the document and you are done with the configuration.
Be sure to not get out of control with your number, I run a res of 1600x1200 on a 19" monitor and my adjusted mouse setting is

<key>com.apple.mouse.scaling</key>
<real>3.000000000000000e+00</real>

...and that is a beautiful setting.

Some folks can simply open their mouse preferences and then quit the system prefs after performing this to see their mouse speed increase take effect BUT!!! When you open the mouse prefs do not touch the sensitivity slider, just open system prefs to "mouse" then quit system prefs. I repeat, DO NOT click the slider; doing so will default the mouse setting to the normal speed.
If you cannot do this and see your enhacned mouse speed, then you will need to logout and back in.

Enjoy your speedier feeling system due to this simple little adjustment.
__________________
http://www.swizcore.com - My communication design effort(...constantly in progress)
http://callingallheroes.com
Great Lakes Sincerity

Dual 1 ghz Quicksilver : 17" Apple LCD : 100% Jaguar
Sony DCR-TRV830 DV Cam
Reply With Quote
  #2  
Old October 5th, 2001, 12:53 PM
Registered User
 
Join Date: Nov 2000
Location: Oklahoma City
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
TazmanDman is on a distinguished road
works great

thanks for the tip... it works wonderfully

-Taz
Reply With Quote
  #3  
Old October 5th, 2001, 01:54 PM
Darkshadow's Avatar
wandering shadow
 
Join Date: Jul 2001
Location: DE, USA
Posts: 1,532
Thanks: 0
Thanked 0 Times in 0 Posts
Darkshadow is on a distinguished road
I did finally figure out how to get the defaults command to work.

defaults write -globalDomain com.apple.mouse.scaling -float 3.0

I'm still not sure why my initial try with "Apple Global Domain" instead of -globalDomain didn't work (it wouldn't write it), but that's why I posted it as editing the .GlobalPreferences.plist. I'm pretty glad this gets defaults working.
__________________
I am but a lonely shadow,
Doomed forever to roam and wander.
But if you allow me to pause before I must go,
I'll spin you tales of mystery and wonder.


Site: Night Productions
Reply With Quote
  #4  
Old October 5th, 2001, 01:58 PM
swizcore's Avatar
Help Guide Coordinator
 
Join Date: Sep 2001
Location: Michigan USA
Posts: 336
Thanks: 0
Thanked 0 Times in 0 Posts
swizcore is on a distinguished road
Quote:
Originally posted by Darkshadow
I did finally figure out how to get the defaults command to work.

defaults write -globalDomain com.apple.mouse.scaling -float 3.0

I'm still not sure why my initial try with "Apple Global Domain" instead of -globalDomain didn't work (it wouldn't write it), but that's why I posted it as editing the .GlobalPreferences.plist. I'm pretty glad this gets defaults working.
Excellent!! Thanks. That makes everything much easier.

For those who don't know what the defaults command is:
Simply open the Terminal from your /Applications/Utilities folder and type in the following:

defaults write -globalDomain com.apple.mouse.scaling -float 3.0

Replace "3.0" with whatever number you wish to achieve your preferred setting.

Will probably still need to logout to see changes take effect.
__________________
http://www.swizcore.com - My communication design effort(...constantly in progress)
http://callingallheroes.com
Great Lakes Sincerity

Dual 1 ghz Quicksilver : 17" Apple LCD : 100% Jaguar
Sony DCR-TRV830 DV Cam
Reply With Quote
  #5  
Old October 17th, 2001, 09:09 AM
Registered User
 
Join Date: Oct 2001
Location: Austin, TX
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Zoid is on a distinguished road
Easier way to edit preferences

There is no need to use the command line to edit your own preferences file, nor do you have to be root.

Any files in /Users/<your account>/Library are owned by you and you can freely edit them without becoming root.

Also, if you have the developer tools installed (which I recommend even if you are not a developer), you can use the PropertyListEditor to edit preferences with a graphical client.

Run PropertyListEditor from /Developer/Applications/PropertyListEditor and go to File/Open and type in the file name as stated earlier,
Users/your_username/Library/Preferences/.GlobalPreferences.plist

PropertyListEditor will then display the properties in a window and you can easily double click their values and change them as desired. This works for any .plist file in your Library/Preferences folder. It's also a great way to investigate various preferences files for different applications and see what preferences you and mess with yourself.

Of course, if you are experimenting, make sure to back up any plist files before you modify them! Also, remember preferences do not take affect until you relaunch the application that uses the preferences file. Also be aware that if you are editing a plist file for an application that is currently running, it may overwrite any changes you make if you quit that application after you save changes. In general, its best to edit preferences files when the application is not running.

Good luck!
Reply With Quote
  #6  
Old October 26th, 2001, 04:29 AM
beef's Avatar
Dinner
 
Join Date: Apr 2001
Location: Ann Arbor, MI
Posts: 172
Thanks: 0
Thanked 0 Times in 0 Posts
beef is on a distinguished road
forching change without logout?

as simple as it is, this probably is one of the best tip...

now I'm only wondering if there is a way to force the change without logout...?
__________________
what's for dinner?
Reply With Quote
  #7  
Old November 3rd, 2001, 10:09 PM
MacHead
 
Join Date: Oct 2001
Location: San Fernando Valley, CA
Posts: 86
Thanks: 0
Thanked 0 Times in 0 Posts
yanges is on a distinguished road
Re: Easier way to edit preferences

Quote:
Originally posted by Zoid
There is no need to use the command line to edit your own preferences file, nor do you have to be root.

Any files in /Users/<your account>/Library are owned by you and you can freely edit them without becoming root.

Also, if you have the developer tools installed (which I recommend even if you are not a developer), you can use the PropertyListEditor to edit preferences with a graphical client.

Good luck!
hi Zoid

was wondering......is it OK to install the developer tools after using OSX.1 for a while? i thought maybe it had to be done on in initial install?

any thoughts on this would be appreciated...

__________________
yanges

dual 2.0ghz PowerMac, Tiger, 1gb ram, 19" Viewsonic CRT display, HK SoundSticks, iBot - Cube 450mhz, OSX.2, 1.2gb ram, Apple CRT 17" Studio Display
Reply With Quote
  #8  
Old November 4th, 2001, 12:43 AM
Registered User
 
Join Date: Oct 2001
Location: Austin, TX
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Zoid is on a distinguished road
Re: Re: Easier way to edit preferences

Quote:
Originally posted by yanges
... was wondering......is it OK to install the developer tools after using OSX.1 for a while? i thought maybe it had to be done on in initial install?
Installing the Developer Tools post install is perfectly fine. But be aware that you must install the 10.1 Developer Tools on OS X 10.1. Installing a previous version is not recommend and will probably not function.

If you don't have the 10.1 Developer Tools CD, you can download them from Apple's Developer Connection at http://developer.apple.com/. You'll have to sign up as a free web developer, however.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Does more RAM increase 10.2 speed? Durbrow Hardware & Peripherals 7 October 24th, 2002 07:57 AM
MOSR predicts 100% increase in proc speed by MWNY. Matrix Agent Apple News, Rumors & Discussion 12 May 15th, 2002 03:26 AM
Mouse speed resets to default!!! pwharff Mac OS X System & Mac Software 0 September 28th, 2001 02:41 AM
I need the speed! PoweMACuser Apple News, Rumors & Discussion 11 July 16th, 2001 10:49 AM
Will Apple really be able to increase speed? elektrobank Apple News, Rumors & Discussion 5 September 28th, 2000 08:09 AM


All times are GMT -5. The time now is 09:07 AM.


Mac Support® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Copyright 2000-2008 DigitalCrowd, Inc.