AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Fastest Clicker

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
guydols



Joined: 11 Jun 2009
Posts: 57
Location: netherlands, sittard

PostPosted: Wed Mar 10, 2010 9:45 pm    Post subject: Fastest Clicker Reply with quote

hi i made a click script but i was wandering if it could go any faster?
Code:

#NoEnv
SetMouseDelay,-1
SetBatchLines,-1
A=0
KeyWait,RControl,D
Loop
{
MouseClick,left
if A = 1
ExitApp
}
Escape:: A=1
Return



ty
Back to top
View user's profile Send private message MSN Messenger
None



Joined: 28 Nov 2009
Posts: 3086

PostPosted: Wed Mar 10, 2010 10:02 pm    Post subject: Reply with quote

Code:
SendInput {LButton 100}

I don't think it can get much faster
Back to top
View user's profile Send private message
HotKeyIt



Joined: 18 Jun 2008
Posts: 4652
Location: AHK Forum

PostPosted: Wed Mar 10, 2010 10:08 pm    Post subject: Reply with quote

A very little bit faster Smile
Code:
#NoEnv
SetMouseDelay,-1
SetBatchLines,-1
KeyWait,RControl,D
start:=A_TickCount
Loop 1000
   Click
MsgBox % A_TickCount-start
Escape::ExitApp

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun Wink
Back to top
View user's profile Send private message
guydols



Joined: 11 Jun 2009
Posts: 57
Location: netherlands, sittard

PostPosted: Wed Mar 10, 2010 10:22 pm    Post subject: Reply with quote

lol yeah just a little bit, OMG

ty
Back to top
View user's profile Send private message MSN Messenger
jl34567



Joined: 03 Jan 2010
Posts: 262

PostPosted: Thu Mar 11, 2010 6:25 pm    Post subject: Reply with quote

I think ControlClick is faster......I had an issue with it where a flash control wouldn't register one click.

Plus you can set it to click 1000 times in ClickCount.

ControlClick [, Control-or-Pos, WinTitle, WinText, WhichButton, ClickCount, Options, ExcludeTitle, ExcludeText]
Back to top
View user's profile Send private message AIM Address
Eedis



Joined: 12 Jun 2009
Posts: 1158
Location: Indianapolis IN, USA

PostPosted: Fri Mar 12, 2010 12:52 am    Post subject: Reply with quote

Try
Code:
SetBatchLines, -1

At the very top of the script.
_________________
www.AutoHotkey.net/~Eedis
I love my wife and daughter so much.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group