I have a internet camera with TILT control (moving left and right) connected to my PC. the SW comes with mouse control , so there is a "right" and "left" area in SW screen and when pressed with mouse left click on these areas, it moves the camera left or right. single click moves one step and long click moves the camera continuously until I release the mouse left click
I wanted to control it using keyboards arrows so I did this (only leeft arrow as example, I have the same for all directions):
Code: Select all
Left::
Click , Left,Down, 1190,158
KeyWait Left
Click , Left,Up, 1190,158
Return
this means that until I release the left arrow key it is as if the mouse left click is pressed continuously
so this works great when I am on the same computer with the camera SW which is running the Autohotkey script
when I use remote chrome desktop it does not work well and what I can see is that when I have a long press on the left arrow key it actually sends repeatedly a "press" and the "release" and then "press" again and "release" etc ... this causes the continuous camera motion to be broken to step motion again, as if I was pressing and releasing the left arrow key with high frequency instead of single long press
Can anybody advise if this problem can be solved somehow ?
thanks
Tal