Noobcake Posted October 1, 2006 Posted October 1, 2006 Can someone make me a script where it holds the key "S" for 5 seconds, and then it does this on a continous loop, every minute. It would be very appreciated thanks
BigDod Posted October 1, 2006 Posted October 1, 2006 You could try looking at the help file but I am in a good mood Opt("SendKeyDownDelay", 5000) HotKeySet("{ESC}", "Terminate") while 1 send ("s") sleep (60000) WEnd Func Terminate() Exit 0 EndFunc Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
Fossil Rock Posted October 1, 2006 Posted October 1, 2006 (edited) Welcome to the forum. With that being said wouldn't you rather do it yourself and learn the code? I doubt seriously anyone will write code for you without any attempt on your part.Edit: I stand corrected. Edited October 1, 2006 by Fossil Rock Agreement is not necessary - thinking for one's self is!
creeping Posted October 1, 2006 Posted October 1, 2006 look up the help file Opt("SendKeyDownDelay", 5000) While 1 Send("s") Sleep(1000 * 60) WEnd
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