Page 1 of 1
Mouse wheel
Posted: Sun Jul 15, 2012 5:27 am
by DindonDodu
Hi,
I'm having trouble binding the mousewheel to triangle to switch weapon. any help?
Re: Mouse wheel
Posted: Mon Jul 16, 2012 7:31 am
by Matlo
Can you explain what binding you defined, and what you expect?
Re: Mouse wheel
Posted: Thu Jul 19, 2012 7:21 pm
by DindonDodu
When im playing cod, and i bind the mouswheel up to triangle and mw down to triangle in GIMX-config, it glitch and it change the weapon randomly.
Re: Mouse wheel
Posted: Thu Jul 19, 2012 8:25 pm
by Matlo
The problem is that each mouse wheel report is translated into button down/up events. GIMX postpones the up event by 30ms, which is arbitrary. Maybe this is not enough for the game to register the action.
As a work around, you can bind a key to triangle, and define macros for the mouse wheel down events.
Example:
'p' is bound to triangle.
Code: Select all
MACRO MBUTTONDOWN BUTTON_WHEELDOWN
KEYDOWN p
DELAY 60
KEYUP p
MACRO MBUTTONDOWN BUTTON_WHEELUP
KEYDOWN p
DELAY 60
KEYUP p