use autoit... does any one know how to use auto it to make this?
here what i have so far ....
Code:
#include <Misc.au3>
While 1
If _IsPressed("20") Then
MsgBox(0,"_IsPressed", "End Key Pressed")
EndIf
WEnd
so when i push space bar i get the window that pops up with a ok box... but how do i make it so that i can hold down the space bar instand of tapping it... as i have here in the script ....
for example if i hold down spacebar... it will open the window over and over till i let go of the space bar...