Currently I have an extremely simple script that presses keys in very rapid succession. Unfortunately, they aren't being held down long enough to register, but the delays in between them are quite long (150 ms).
Is there any way to have the key hold down for longer than an instant?
Example:
AutoIt presses the keys, but extremely quickly, which often enough isn't long enough for the game to register the press. Without slowing the Sleep to a crawl, how can I make the keypress longer?
EDIT: The script is being programatically generated; the entire script is over 1600 lines. I'm not worried about filesize, so if there needs to be a Keydown, delay, Keyup, that would be fine too.
Is there any way to have the key hold down for longer than an instant?
Example:
Send("O") Sleep(150) Send("a") Sleep(150) Send("D") Sleep(150) Send("O")
AutoIt presses the keys, but extremely quickly, which often enough isn't long enough for the game to register the press. Without slowing the Sleep to a crawl, how can I make the keypress longer?
EDIT: The script is being programatically generated; the entire script is over 1600 lines. I'm not worried about filesize, so if there needs to be a Keydown, delay, Keyup, that would be fine too.