> 
> I do very much hope to be able to get these kinds of somewhat random
> mouse movements happening.
> 


Something like
local xnew=xmouse
local ynew=ymouse
xnew =xnew +25-random(50)   // for +- 25 random positions, including 0
ynew =ynew +25-random(50)
xnew = max(0, min(xscreen, xnew))  // force on screen
ynew = max(0, min(yscreen, ynew))
win.mouse("ab "++ xnew ++" "++ynew)


See help and scripting tutorial for details.



Reply via email to