up vote 0 down vote favorite
share [g+] share [fb]

I just got a Logitech G5, which is a great mouse, but one 'feature' is really annoying: the middle mouse button has 3 click points, namely scroll left, scroll right and the standard scroll wheel middle click.

Because I often accidentally click the scroll left/right button when I actually wante to use the middle mouse button (e.g., to close a tab in Firefox), I want to remap both scroll buttons to the middle mouse button action. Is there a way to do this? I've tried using Logitech's SetPoint tool, but it doesn't seem to allow remapping these keys to the generic middle mouse button action (you CAN remap it to 'middle button', but it doesn't seem to do anything).

link|improve this question
Which operating system do you use ? – Gnoupi Nov 3 '09 at 15:41
feedback

2 Answers

up vote 5 down vote accepted

Try UberOptions, which allows easy remapping of any of the keys much better than the official setpoint configuration.

link|improve this answer
Perfect, that did the trick (I can remap it to the middle mouse button now). Thanks! – Dennis G. Nov 3 '09 at 18:23
feedback

You can use AutoHotKey to remap these "buttons".

According to this topic on their forum, it is possible to map "WheelLeft" and "WheelRight" since version 1.0.48.

The script to use would look this way, for you:

WheelLeft::return
WheelRight::return

It would remap the both actions to do nothing (returns directly).

However, from what I can read on the same topic, it seems that the left and right events are not working in Windows XP.

Edit: I misunderstood the actual question.

To remap these left and right to the middle button, you would rather use such script:

WheelLeft::MButton
WheelRight::MButton
link|improve this answer
Thanks for the answer. I could disable the buttons with Logitech's SetPoint, but I would rather remap the keys, as I often accidentally click them. – Dennis G. Nov 3 '09 at 18:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.