FEhler entdeckt und behoben blos jetzt casten die CLone die ganze zeit wenn ich irgendwo mit LButton drueckt aber der Leader nur im Bereich

Code:
#IfWinActive, Leader
LButton::

If MouseInRange(269,250,759,778)
ControlSend,,{3 down}{3 up}, Leader
ControlSend,,{3 down}{3 up}, Box1
ControlSend,,{3 down}{3 up}, Box2
ControlSend,,{3 down}{3 up}, Box3
ControlSend,,{3 down}{3 up}, Box4
return

MouseInRange(minx,maxx,miny,maxy)
{
MouseGetPos, x, y
If (y >= miny) and (y <= maxy) and (x >= minx) and (x <= maxx)
Return 1
Return 0
}