Jump to content

Recommended Posts

Posted

example... - send, {SPACE 1000}

this press SPACE at a very very fast rate.... too fast for what I really wanted...

Is there any command that can reduce the rate it presses SPACE? like delay it, 2 presses/ second?

Is that possible??

Please help!!! THANKS !

Posted (edited)

RTM

Opt('SendKeyDelay',500)

Edit: I set once every 2 seconds... Reading better it was twice a second. Fixed.

Edited by ezzetabi
Posted (edited)

RTM

Opt('SendKeyDelay',500)

Edit: I set once every 2 seconds... Reading better it was twice a second. Fixed.

<{POST_SNAPBACK}>

where do I add this in?

send, {SPACE 1000} Opt('SendKeyDelay',2000)

??

thanks

how about once per second?

Edited by arsenic
Posted (edited)

RTM

Opt('SendKeyDelay',500)

send, {SPACE 1000}

I tried it this way it didn't work... can tell me exactly how should i put it?? sorry.. this is my first time using this program ... many thanks

Edited by arsenic
Posted

It looks like you are using v.2. Here is the v.3 syntax if you want to download AutoIt v.3.

Opt(SendKeyDelay, 500)
Send("{SPACE 1000}")

At least, I think that's it.

Ian

"Blessed be the name of the Lord" - Job 1:21Check out Search IMF

Posted

and the RTM was not a command. It was a short form for Read the manual...

@ioliver, you are right.

use:

;Read The Manual 

Opt(SendKeyDelay, 500)

Send("{SPACE 1000}")
Posted

example... - send, {SPACE 1000}

this press SPACE at a very very fast rate.... too fast for what I really wanted...

Is there any command that can reduce the rate it presses SPACE? like delay it, 2 presses/ second?

Is that possible??

Please help!!! THANKS !

<{POST_SNAPBACK}>

Since you are using AutoIt version 2, the function to adjust the speed of Send is:

SetKeyDelay, <milliseconds>

This function changes the delay between keystrokes in milliseconds. Max is 32767.

Default is 20ms. 1000 milliseconds = 1 second.

For one second between each keystroke:

SetKeyDelay, 1000

send, {SPACE 1000}

Phillip

Posted

;Read The Manual 

Opt("SendKeyDelay", 500)

Send("{SPACE 1000}")

<{POST_SNAPBACK}>

LMAO Slim

We have enough youth. How about a fountain of SMART?

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...