Hello,
I try to use AutoIt for the first time ... I know C language, and I try to do a script mouse. When I press the right mouse the script must reproduce the 64 clicks.
I try with this ....
While(1){
if (_IsPressed(02){
for(i=0; i<=64; i++{
MouseClick("right")
}
}
}WEnd