Wie kann ich im Browser mit Logitech Trackman Marble scrollen?

5857
woodings

Ich habe einen Logitech Trackman Marble und ich liebe ihn wirklich. Ich verbringe viel Zeit mit Webbrowsern und Code-Editoren. Ich habe mich gefragt, ob es eine Funktion gibt, wie wenn ich die Optionstaste drücke, der Trackball wird zu einem Scrollrad. Damit ich den Trackball sowohl zum Bewegen des Cursors als auch zum Scrollen verwenden kann.

3
Mögliche Duplikate: [Abhilfe für einen Trackball ohne Scrollrad?] (Http://superuser.com/questions/303661/remedy-for-a-no-scroll-wheel-trackball?rq=1), [Scrollmodifizierer für Maus / Trackball in Windows] (http://superuser.com/questions/498198/scroll-modifier-for-mouse-trackball-in-windows) Ƭᴇcʜιᴇ007 vor 11 Jahren 1
@ techie007 Danke! Die erste Frage, die Sie angesprochen haben, schien zu sein, was ich zu tun versuchte. Es gab aber keine Lösung für Mac :( woodings vor 11 Jahren 0

1 Antwort auf die Frage

7
user495470

You can use KeyRemap4MacBook:

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

Replace ModifierFlag::FN with VK_CONTROL for either control. Keys that aren't modifier keys can be mapped to EXTRA1:

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

Key Repeat > [Pointing Device] CursorMove to ScrollWheel Rate changes the scrolling speed.

See the source for the key code values and predefined settings.

Vielen Dank! KeyRemap4MacBook macht genau das, was ich brauchte. Ich verwende Fn + CursorMove zu ScrollWheel :) woodings vor 11 Jahren 0