It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Hi,

I always use the mouse right click to move forward in first/third person view games. I've tried many solutions but even when the move forward action is done correctly, the native action is also always done.

I've a Logitech MX620, I've tried to use uberOption with both last version and v4.80 of SetPoint, and there is no way to remap buttons 1 & 2 even when installing the profile designed to do that.

I've tried X-Mouse Button Control and various AutoHotKey scripts (tried all send mode), but the native action is always done even when the move forward action works.

Has anyone been able to block the native action of the mouse buttons in this game?

Thanks
Post edited March 13, 2015 by pinkimo
No posts in this topic were marked as the solution yet. If you can help, add your reply
avatar
pinkimo: ...
You can't rebind anything else to the right mouse button than the "Second Action". Probably because of some hard wired code. Hence you have to use third-party software like AutoHotKey.
As the moving already works, AutoHotKey is sending the right signal to the game, but it seems the game still gets the event to perform the second action as well.
Mouse buttons usually consist of three events in programming:
1. Button pressed: The button is down
2. Button released: The button is going up
3. The uninterrupted sequence of button pressed and button released is often a "click".

My guess is, the game still gets one of these mouse events and it triggers the second action. Make sure your AHK script covers all these events, so the game gets nothing else but the move command while right-clicking.
Yes I know that, perhaps the game gets the mouse input in it's own way instead of using a standard API like DirectInput handled by AutoHotKey, or, if it's based on loops or timers, BGE reads perhaps the input faster than AutoHotKey.

The game gets the button press event which is supposed to be blocked by AutoHotKey unless you tell it to trigger only on the button release or to not block the native behaviour. And of course it's well blocked on other applications.

The problem is I don't know if there is a way to fix that, an AutoHotKey command I don't know or another app which can help in any way.
FYI, I just bought a G700s and left and right clicks can be remapped with Logitech gaming mice, which is working great with BGE :)
avatar
pinkimo: FYI, I just bought a G700s and left and right clicks can be remapped with Logitech gaming mice, which is working great with BGE :)
Great, thanks for letting us know!