IKilledBambi Posted November 6, 2008 Posted November 6, 2008 (edited) Is there any way to make autoit faster? While 1 Send("test") wend I couldn't find a way is it possible? Edited November 6, 2008 by IKilledBambi
LarryDalooza Posted November 6, 2008 Posted November 6, 2008 Opt("SendKeyDelay",1) or... if you feel frisky... Opt("SendKeyDelay",0) Lar. AutoIt has helped make me wealthy
TouchOdeath Posted November 6, 2008 Posted November 6, 2008 Opt("SendKeyDelay", 0) Opt("SendKeyDownDelay", 0) I user zero all the time. You just have to use handles alot but its the best way.
IKilledBambi Posted November 6, 2008 Author Posted November 6, 2008 This is my test script, is there anything I'm missing? It seems to work. HotKeySet("{f5}", "Start") HotKeySet("{f6}", "Pause") While 1 WEnd Func Start() Opt("SendKeyDelay", 1) $i = 0 Do Send($i & "{enter}") $i = $i + 1 Until $i = 10000 EndFunc ;==>Start Func Pause() While 1 Sleep(1000) WEnd EndFunc ;==>Pause
rasim Posted November 6, 2008 Posted November 6, 2008 This is my test script, is there anything I'm missing? It seems to work.Little correction: Opt("SendKeyDelay", 1) HotKeySet("{f5}", "Start") HotKeySet("{f6}", "Pause") Global $i = 0 While 1 Sleep(10) WEnd Func Start() Do Send($i & "{enter}") $i = $i + 1 Until $i = 10000 $i = 0 EndFunc ;==>Start Func Pause() While 1 Sleep(100) WEnd EndFunc ;==>Pause
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now