I need to hit the following sequence (from a browser): 0 tab tab tab space
The web app requires a delay between key presses, so I have written the following script to add a small delay in milliseconds between each key-press:
Code: Select all
HIDMacros.SendKeys "0"
sleep(200)
HIDMacros.SendKeys "1"
sleep(200)
HIDMacros.SendKeys "2"
sleep(200)
HIDMacros.SendKeys "3"
sleep(200)
I read something about this on one of the site's pages, though it was referring to mouse clicks.
Any idea if this can work? I'm mapping to my numpad which does seem to work fine.