-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ahk.type key delay #340
Comments
Obviously I can replicate this with a for loop typing a single key at a time, but that seems wasteful lol. |
If you're using AutoHotkey v2, you'll have to change the send mode in order to see the effect of the Try the following, which sets the send mode to from ahk import AHK
ahk = AHK(version='v2')
ahk.send('anything', key_delay=50, send_mode='Event')
# OR
ahk.set_send_mode('Event')
ahk.send('anything', key_delay=50) When using AutoHotkey v1, this isn't necessary since Using key delay with |
Hi! Is it possible to send input immediately to certain window? I'm using window.send it's like typing, but I would like to do it as fast as possible |
Checked the documentation
describe your feature request
I want AHK to type (not send) emails and passwords for example into a window.
Trying to set the key_delay for this isn't working:
ahk.type(account.email,key_delay=50)
The text was updated successfully, but these errors were encountered: