I got a request from a user that I want to answer in the forums:
Here is a macro that does just that:Can you advise a macro to shake the mouse? Left and right? for 2 seconds?
Code: Select all
<MACRO id="ShakeMouse">
<START>
<MOUSEMOVEINPUT x="-50" y="0" behaviour="RELATIVE"/>
</START>
<MAIN repeat="5">
<MOUSEMOVEINPUT x="100" y="0" behaviour="RELATIVE"/>
<WAIT time="200"/>
<MOUSEMOVEINPUT x="-100" y="0" behaviour="RELATIVE"/>
<WAIT time="200"/>
</MAIN>
<END>
<MOUSEMOVEINPUT x="50" y="0" behaviour="RELATIVE"/>
</END>
</MACRO>
I am not quite sure if that solves your problem as I don't know what problem you are trying to solve.
Best,
Markus