To have keyboard and mouse events work over Remote Desktop I needed to add <KMJMechanism>SendInput to global.cfg . Unfortunately this setting has made the HIDMouse_Wheel events too fast. (It works fine locally when I don't use SendInput mode
How can I slow down ActionHIDMouse_Wheel?
1. Scale: Without SendInput mode, Scale=0.x works well. After SendInput mode, Scale has no effect with values larger than >0.001 , and at 0.001 it stops working entirely.
2. Pause: Can I set it up as a sequence and use Pause? Can I split the Rz axis into positive/negative and send MouseWheelUp and MouseWheelDown commands with Pause commands in between? What are the XML values to send the equivalent of MouseWheelUp and MouseWheelDown?
3. MaxEventRate: No effect.
4. What are the parameters for <ActionID>HIDMouse_Wheel exactly?
Code: Select all
<Input>
<ActionID>HIDMultiAxis_Rz</ActionID>
<Min>-512</Min>
<Max>512</Max>
<Deadband>80</Deadband>
</Input>
<Output>
<ActionID>HIDMouse_Wheel</ActionID>
<Reversed>true</Reversed>
</Output>