View difference between Paste ID: uM2xcs9N and bdeTTD2W
SHOW: | | - or go back to the newest paste.
1
; hold middle mouse button to left click
2
; Shift+pause to terminate the script, pause key to pause it... no more RIP LMB
3
Global $Paused
4
HotKeySet("{PAUSE}", "TogglePause")
5
HotKeySet("+{PAUSE}", "Terminate")
6
 
7
#Include <Misc.au3>
8
While 1
9
$end = 1
10
 
11
while _IsPressed(04)
12
;dont
13
mousedown("left")
14
mouseup("left")
15-
sleep(100)
15+
sleep(10)
16
tooltip("clicking",0,0)
17
    wend
18
  tooltip("",0,0)
19
WEnd
20
 
21
Func TogglePause()
22
  $Paused = NOT $Paused
23
  While $Paused
24-
    sleep(100)
24+
    sleep(1000)
25
    ToolTip('Script is "Paused"',0,0)
26
  WEnd
27
  ToolTip("")
28
EndFunc
29
30
Func Terminate()
31
    Exit 0
32
EndFunc