ChronologiX Posted November 21, 2007 Posted November 21, 2007 (edited) please delete, got server lag and have pushed the submit button thrice Edited November 21, 2007 by ChronologiX
ChronologiX Posted November 21, 2007 Author Posted November 21, 2007 (edited) please delete, got server lag and have pushed the submit button thrice/ Sorry for the triple post Edited November 21, 2007 by ChronologiX
ChronologiX Posted November 21, 2007 Author Posted November 21, 2007 How can I make the script automatically press a certain key every X second? like the script would automatically press F4 every 30 seconds,Ctrl+H every 55 seconds and ctrl+spacebar every 45 seconds Can this be done and a hotkey to make the script start and end?
Developers Jos Posted November 21, 2007 Developers Posted November 21, 2007 What have you tried so far ? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
ChronologiX Posted November 22, 2007 Author Posted November 22, 2007 Nothing Yet but could you guide me on making one?
searchresult Posted November 22, 2007 Posted November 22, 2007 Nothing Yet but could you guide me on making one?Have you tried send() and sleep()look in help for those two functions
BrettF Posted November 22, 2007 Posted November 22, 2007 TimerInit/TimerDiff? While LoopIf...Then...ElseIf...Else...EndIf or Select...Case...ContinueCase...Case Else...EndSelectThat should do it Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
searchresult Posted November 22, 2007 Posted November 22, 2007 Something like this maybe: While 1 $begin = TimerInit() $dif = TimerDiff($begin) If $dif = 30 Then Send("{ENTER}") EndIf 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