-
Notifications
You must be signed in to change notification settings - Fork 66
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
set input delay... #335
Comments
Have you tried using the |
where? Key_delay exists for just typing, but not sending messages TO a window. |
That's true. There is an oversight in the API for I should be able to add this feature quickly, both for a In the meantime, a workaround may be to control the delays 'manually': delay = 0.1
for key in 'my message':
win.send(key)
time.sleep(delay) |
This is great! By the way, is this send basically ControlSend? Would it cause the same issues as win,shift,alt,ctrl keys being stuck? |
Right. The underlying functionality of |
Checked the documentation
describe your feature request
Hi,
it is completely unclear whether or not you can setup input delay.
Right now it types a text message in mere milliseconds, but i want to put a key delay after each stroke for 10ms.
This isn't supported right now it seems, while it's a basic feature in AHK.
The text was updated successfully, but these errors were encountered: