| View previous topic :: View next topic |
| Author |
Message |
TheKing Guest
|
Posted: Sat Feb 21, 2009 8:22 pm Post subject: How can i go faster than milliseconds |
|
|
Hi there,
I made a small script to press my space bar with a timer attached.
I wonder is it possible to go even faster then the 0 Milliseconds i added.
The script works fine but i want it to go even faster
Anyone has any suggestion or is this just not possible?
Here you can see my script:
#persistent
settimer, dospace, 0 (i want to go faster then this!)
return
dospace:
send {space}
return
Thanks anyways for all the help and afford!
You can mail me Maerevoetnick@gmail.com |
|
| Back to top |
|
 |
flatfly Guest
|
Posted: Sat Feb 21, 2009 8:55 pm Post subject: |
|
|
| Yes, it is possible to fine tune a certain clock setting in windows to enable your script to send keys up to 15 times faster than the default speed. If I can retrieve the exact info (i'm at work right now) I will post it. (assuming someone else hasn't in the meantime) |
|
| Back to top |
|
 |
Excited Guest
|
Posted: Sun Feb 22, 2009 12:38 pm Post subject: Waiting |
|
|
Well flatfly - whenever u r redy
I have been waiting all day 4 ur response |
|
| Back to top |
|
 |
jaco0646
Joined: 07 Oct 2006 Posts: 3113 Location: MN, USA
|
Posted: Sun Feb 22, 2009 3:36 pm Post subject: |
|
|
[hijack]
I'm sorry, this isn't an answer; but your question so reminded me of this thread from a couple months ago: Make Mouse Faster. The penultimate post and Krogdor's response still give me a good laugh today.
[/hijack] |
|
| Back to top |
|
 |
firace
Joined: 08 Feb 2009 Posts: 28
|
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 4710 Location: Boulder, CO
|
Posted: Sun Feb 22, 2009 5:37 pm Post subject: |
|
|
| Set SendMode Input and in the timer subroutine Send {Space 10}. It will add 10 spaces to the input buffer at a time. You can have more, if it is still not enough. |
|
| Back to top |
|
 |
evan
Joined: 19 Feb 2009 Posts: 125
|
Posted: Sun Feb 22, 2009 5:38 pm Post subject: |
|
|
| using loop will be faster than settimer at least 10ms for each press |
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 4710 Location: Boulder, CO
|
Posted: Sun Feb 22, 2009 6:12 pm Post subject: |
|
|
| Loops will be too fast, and consume too much CPU power. |
|
| Back to top |
|
 |
Frankie
Joined: 02 Nov 2008 Posts: 2850
|
Posted: Sun Feb 22, 2009 6:32 pm Post subject: |
|
|
What are you trying to use this for/on? _________________ aboutscript ⍟ apps ⍟ scripts
Any code ⇈ above ⇈ requires AutoHotkey_L to run |
|
| Back to top |
|
 |
TheKing Guest
|
Posted: Sun Feb 22, 2009 6:39 pm Post subject: Thx |
|
|
| Laszlo wrote: | | Set SendMode Input and in the timer subroutine Send {Space 10}. It will add 10 spaces to the input buffer at a time. You can have more, if it is still not enough. |
You are my god!
And to all the other dude's thx for help and afford!  |
|
| Back to top |
|
 |
|