Heyho,

1. STOP SPAMMING ME mit PMs
Ich lese die Foren regelmäßig, wenn ich jedoch keine Zeit habe (wie die letzten paar Tage) dann komme ich nicht dazu zu antworten.

2. Probier's mal hiermit:
Code:
LButton::

 if MouseInRange(250,269,759,778)
ControlSend,,{3 down}{3 up},Box1
ControlSend,,{3 down}{3 up},Leader

else
    Click
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
}
Eventuell klappt's so.

Xorn