Is it possible to simulate swipe gesture with mouse using AutoIT? Something like
MouseDown($MOUSE_CLICK_LEFT)
MouseMove(700, 700, 0)
MouseUp($MOUSE_CLICK_LEFT)
or
MouseClickDrag($MOUSE_CLICK_LEFT, 0, 200, 600, 700)
The problem of these two solutions is that the mouse is being released after mouseUp.
The swipe gesture instead, need to release the mousebutton just before the final point.
So what i can do?
-May i run 2 script, the first one to move the mouse and the second one to release mouse after certain time? (Tried but not working...)
-May i run parallel threads? (i don't exactly know how to do it, but i read that is possible ).
Thanks.