如何使用Logitech Trackman Marble在浏览器中滚动?


3

我有一个Logitech Trackman Marble,我真的很喜欢。我在网络浏览器和代码编辑器上花费了大量时间。我想知道是否有像按Option键时轨迹球变成滚轮之类的功能。这样我就可以将轨迹球用于移动光标和滚动。



@ techie007谢谢!您提到的第一个问题似乎是我正在尝试做的事情。但是,对于Mac没有解决方案:(
woodings

Answers:


7

您可以使用KeyRemap4MacBook

<autogen>__PointingRelativeToScroll__ PointingButton::NONE, ModifierFlag::FN | ModifierFlag::NONE</autogen>

用任一控件的VK_CONTROL替换ModifierFlag :: FN。不是修饰键的键可以映射到EXTRA1:

<autogen>__KeyToKey__ KeyCode::F1, KeyCode::VK_MODIFIER_EXTRA1</autogen>
<autogen>__PointingRelativeToScroll__ PointingButton::NONE, ModifierFlag::EXTRA1</autogen>

重复按键> [Pointing Device]光标移动到ScrollWheel Rate可更改滚动速度。

有关关键代码值预定义设置,请参见源。


谢谢!KeyRemap4MacBook完全满足我的需求。我正在使用Fn + CursorMove到ScrollWheel :)
树木丛生
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.