kotachua wrote:
what is the use of Lbutton im not just trying to leech but learn as well =)
oh btw if i dont want it to loop but as single clicks how do i do it?
coz rite now i need 9 clicks then 1 left hold and release as F1 anyone can guide me towards that direction?
Edit* hey i got to press 9 click one after another but now i need to know how to get left click to hold then release after my 9 clicks using the same hotkey
lol specter333 what a helpful guy...... =(
Kotachua this is the example you asked for 3left click hold left click once and release. You weren't specific enough but this is what you want.
Code:
F1::
;This first click is 3 left clicks, you can use specter333's loop for this if you want to control the left click delay, but really same thing
MouseClick , LEFT , , , 3, 2
Sleep, 50
;This only sends the mouseclick up event
MouseClick , LEFT , , , 1, 2, D
Sleep, 50
;This only sends the mouseclick up event
MouseClick , LEFT , , , 1, 2, U
Or if I was misunderstanding, and you want to hold a key so that while the key is being held down it spams clicks....
Then use a loop with getkeystate =)