I found 2 scripts and i wold like some one with more
knowledge in ahk then me to merge this two together
Tnx
-------------------------------------------------------------
Script 1
*LButton::
{
Send {LButton down}{RButton down}
While GetKeyState("LButton","P"
{
; do nothing
}
Send {LButton up}{RButton up}
}
Return
--------------------------------------------------------------
Script 2
SendMode Input
~LButton::
Loop
If GetKeyState("LButton" {
Sleep, 65
moveAmount := (moveAmount = 2) ? 3 : 0
mouseXY(moveAmount,4.9)
}
else
break
Return
mouseXY(x,y)
{
DllCall("mouse_event",int,1,int,x,int,y,uint,0,uin t,0)
} |