![]() |
|
#6
|
||||
|
||||
|
I use Autohotkey for all key-mappings and I solved that for myself in the following way:
In IL-2 I mapped the 'r' to the radiator, so pressing 'r' repeatedly will cycle radiator through 0, 2, 4, 6, 8, 0... In Autohotkey I defined the following two functions: Code:
MapCommand_RadiatorOpen:
Send r
return
MapCommand_RadiatorClose:
Send rrrrr
return
Code:
Hotkey, %iIdSelfMade1%Joy32, MapCommand_RadiatorOpen, On Hotkey, %iIdSelfMade1%Joy17, MapCommand_RadiatorClose, On Not perfect, but useful. Artist |
|
|