![]() |
| |||||||
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Junior Member Join Date: Dec 2007
Posts: 28
Reputation: 0 ![]() cBay Rating: | for all those experienced autohotkey users, a quick question.. (i know its off-topic but i neeeed help and im afraid people on the other topic wont post) i have an very basic simple autohotkey script that just presses the spacebar once, then waits 1250 milliseconds, presses it again, then waits 1250 milliseconds, then press the spacebar one last time. i can get this to work in like firefox or notepad but when i open up a game say like quake where i want to press space three times with that delay, it doesn't work. is there anyway i can fix it so its like actually pressing the spacebar? |
| | |
| Sponsored Links | |
| | #2 (permalink) | |
| Junior Member Join Date: Dec 2007
Posts: 29
Reputation: 0 ![]() cBay Rating: | <div class='quotetop'>QUOTE (alcohol120 @ Dec 8 2007, 12:25 AM) <{POST_SNAPBACK}></div><div class='quotetop'>QUOTE </div> Quote:
Send {SPACE} Sleep, 1250 Send {SPACE} Sleep, 1250 Send {SPACE} | |
| | |
| | #3 (permalink) |
| Junior Member Join Date: Dec 2007
Posts: 28
Reputation: 0 ![]() cBay Rating: | yeah i tried that but it still doesnt work. heres my code <div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'>Send {Space} Sleep 1250 ;The number of milliseconds between keystrokes (or use SetKeyDelay). Send {Space} Sleep 1250 ;The number of milliseconds between keystrokes (or use SetKeyDelay). Send {Space} r::Reload ; Assign R as a hotkey to restart the script</div> |
| | |