I am trying to create a script that does what my title says, this is what I have:
HotKeySet("{ESC}", "Terminate")
Sleep(4000)
While 1
MouseDown("right")
Sleep(1000)
MouseUp("right")
WEnd
Func Terminate()
Exit 0
EndFunc
but when i execute it, it holds the right click but it never releases it....any ideas?