How to scroll in browser with Logitech Trackman Marble?

3

2

I have a Logitech Trackman Marble and I really love it. I spend a lot of time on web browser and code editors. I was wondering if there could be a feature like when I press Option Key the trackball becomes a scroll wheel. So that I can use the trackball for both moving cursor and scrolling.

woodings

Posted 2013-04-07T19:37:48.323

Reputation: 607

1

Possible duplicates: remedy for a no scroll wheel trackball?, Scroll modifier for mouse/trackball in windows

– Ƭᴇcʜιᴇ007 – 2013-04-07T19:45:57.377

@techie007 Thanks! The first question you mentioned seemed to be what I was trying to do. But there wasn't a solution for Mac:( – woodings – 2013-04-07T20:37:04.293

Answers

7

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.

Lri

Posted 2013-04-07T19:37:48.323

Reputation: 34 501

Thanks! KeyRemap4MacBook does exactly what I needed. I'm using Fn+CursorMove to ScrollWheel:) – woodings – 2013-04-08T06:30:15.490