SirGray Posted June 15, 2007 Posted June 15, 2007 Hello im new to Autoit and im really bad at it, I was hopeing someone could make me a quick code, all I need it to do is hit the number 3 on the keyboard every 60 sec, repeating forever, could someone do that for me? I have no clue what im doing.
Generator Posted June 15, 2007 Posted June 15, 2007 Whatever i have some time for you. HotkeySet("{F11}","_Start") HotkeySet("{ESC}","_Exit") While 1 Sleep(250) Wend Func _Start() Send("NUMPAD3") Sleep(60*1000) EndFunc Func _Exit() Exit EndFunc
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now