UzZy Posted May 20, 2011 Posted May 20, 2011 i need "Press one time in 10secs." can anyone help me? ControlSend("Winamp", "", "Edit1", "{Enter} ") Opt("SendKeyDelay", 40) ;4 milliseconds
wakillon Posted May 20, 2011 Posted May 20, 2011 Something like this ? Opt("SendKeyDelay", 40) ; ==> 40 milliseconds $_TimerInit = TimerInit ( ) While 1 If _EachXseconds ( 10 ) Then ControlSend("Winamp", "", "Edit1", "{Enter} ") WEnd Func _EachXseconds ( $_Interval ) $_TimerDiff = Round ( TimerDiff ( $_TimerInit )/ 1000 ) If $_TimerDiff >= $_Interval Then $_TimerInit = TimerInit ( ) Return 1 Else Return 0 EndIf EndFunc ;==> _EachXseconds ( ) AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts
wakillon Posted May 20, 2011 Posted May 20, 2011 It doesn't run. Ty for help.Timer works, it's your ControlSend part who seems to not work... AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts
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