Hi,
I don't know whether this is the right place to put such an easy script, but maybe some people need something like that one day.
A friend of mine asked me, how to use one hotkey to call different funcs by hitting the key different times.
(The func put() is just to show, that different funcs are called. )
So here it is:
HotKeySet("a", "pressed")
Dim $i = 0, $PushTime = 1000
While 1
Sleep(100)
WEnd
Func pressed()
$i += 1
Sleep($PushTime)
Switch $i
Case 1
put(1)
Cas