Guest BfarM00 Posted August 29, 2004 Posted August 29, 2004 Ok I made a script, but if I but a big keydowndelay it waits a looong time before starting. Example: Opt("SendKeyDownDelay", 30000) AutoItSetOption("SendKeyDelay", 0060) Send("{G}") So when it reaches this part of the script, it'll pause for a while (i think around 30 seconds) then it will start again. Is there a way to stop the pause?
MHz Posted August 29, 2004 Posted August 29, 2004 Opt("SendKeyDownDelay", 30000) AutoItSetOption("SendKeyDelay", 0060) Send("{G}") That is the same as manually pressing the "g" key on your keyboard for 30 seconds before doing anything else? Why have your Opt("SendKeyDownDelay", ?) at 30000. I do not press one key every 30 seconds or it would take me 2 days for this reply.
ezzetabi Posted August 29, 2004 Posted August 29, 2004 It seems a strange situation. You do have to keep pressed you keys for 30 seconds and await 60 milliseconds from a key and the next one? Maybe you shoud use loops.
scriptkitty Posted August 30, 2004 Posted August 30, 2004 would it be better to hold g down with a timer? Send("{G down}") sleep(30000) Send("{G up}") AutoIt3, the MACGYVER Pocket Knife for computers.
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