Answers:
据我所知,没有外部工具是无法做到这一点的。
Usb Overdrive可让您执行http://www.usboverdrive.com/,这就是我所使用的。
转向鼠标也具有此设置。http://plentycom.jp/en/steermouse/
鼠标曲线http://triq.net/articles/mouse-acceleration-preference-pane-mac-os-x 具有免费的优点,但是Apple在10.6中删除了加速API可能会对它的实用程序产生影响。
进入“轨迹板的系统偏好设置”,并将跟踪速度完全降低。恐怕您无法做的是使鼠标不加速并保持合理的速度。
我喜欢使用适用于Mac的Acc ExactMouse Pro http://www.zarell.com/product/acc_exactmouse_pro/
它还可以通过分配应用程序禁用鼠标加速
编辑:此页底部免费提供。
我目前正在使用SmoothMouse。
根据http://smoothmouse.net/forum/topic/34-pointer-lag,它还应减少指针移动的滞后。
事实:OS X中的屏幕指针比其他操作系统(例如Windows或Ubuntu Linux)落后于鼠标(或触控板)更多。
总结一下:
- 苹果工程师在与我的电子邮件通信中确认了此问题(感谢他)。他还提到他们正在研究解决方案。
- 至少从OS X 10.4“ Tiger”开始存在此问题。当前版本的OS X(10.8“ Mountain Lion”)仍然存在该问题。
- 许多人将滞后与加速混为一谈,这就是我的博客文章的目的。
解决方案:
- 滑鼠。
- 使用鼠标连接到另一台运行Synergy服务器的计算机,将Mac作为Synergy客户端运行。
- 使用Wacom数位板代替鼠标。
面对我的新款Magic Mouse的类似烦恼,我想出了一个不需要任何第三方解决方案的脚本。您可以在我的博客文章中阅读有关内容。我可以将它作为Keyboard Maestro上的便捷菜单选项运行,并将其保留在Dropbox中,但实际上它只是一个shell脚本。因此,如果您对此感兴趣,可以使用以下脚本:
#!/bin/sh
# Kill Mouse Acceleration and set Mouse sensitivity
# Author: [Kaushik Gopal](http://journal.kaush.co/475/run-kill-mouse-acceleration-on-login-with-keyboard-maestro)
# ----------------------------------------
# Check if the killmouseaccel script is installed in the Dropbox folder
if ! [ -f ~/Dropbox/"Utility Belt"/killmouseaccel ]
then
echo "You don't have the kill script installed. Will try to connect to the net and install it now";
curl -O http://ktwit.net/code/killmouseaccel
chmod +x killmouseaccel
mv killmouseaccel ~/Dropbox/"Utility Belt"/
fi
# No run the script
if [ -f ~/Dropbox/"Utility Belt"/killmouseaccel ]
then
# first set mouse sensitivity to sane levels
defaults write -g com.apple.mouse.scaling 1.8
# defaults read -g com.apple.mouse.scaling
# run the kill mouse script
~/Dropbox/"Utility Belt"/killmouseaccel mouse
echo "\nMouse Acceleration: Killed \nMouse:Sensitivity : 1.8\n";
else
echo "\nCouldn't install the kill Mouse Acceleration script. Sorry nothing done.\n";
fi
我将鼠标灵敏度设置为1.8左右,这对我来说很有效。增加/减少到您喜欢的值。
ktwit.net上的绅士/女士的道具实际上提出了鼠标加速杀死脚本。
在尝试了几种方法之后,我最终使用了“ 平滑光标”。它的价格为三美元,但它可以正常工作,使您能够分别控制鼠标和触控板的加速度。