[ create a new paste ] login | about

Link: http://codepad.org/mqtT58Rn    [ raw code | fork ]

Plain Text, pasted on May 8:
1
2
3
4
5
6
7
8
9
10
11
12
Func addToClipboard()

	HotKeySet("^+q", "Dummy") ; This unregisters the key from this function, and sets it on a dummy function
    While _IsPressed("11") Or _IsPressed("10")  Or _IsPressed("51"); Wait until  the ctrl and the Shift and the Q keys are unpressed
        Sleep(50)
    WEnd
	Send ("^c")
    $copied = ClipGet()
	$clipBoard[Mod($counter,50)] = $copied
	$counter +=1
	HotKeySet("^+q","addToClipboard")
EndFunc


Create a new paste based on this one


Comments: