Hi!
I can set only 100 minutes max, can this value be extended? Like up to 24 hours?
And can you add a message at the end of timer (so I won't miss that the timer ended):
the timer has finished working, please press OK button to close the window.
The code for the warning window:
Title := "Please Confirm?", Sec := 30
SetTimer, Countdown, 1000
MsgBox, 64, %Title%, Will launch in %Sec% seconds, %Sec%
Return
Countdown:
ControlSetText, Static2, % "Will launch in " (Sec:=Sec-1) " seconds"
, %Title% ahk_class #32770
Return
Thanks!
I can set only 100 minutes max, can this value be extended? Like up to 24 hours?
And can you add a message at the end of timer (so I won't miss that the timer ended):
the timer has finished working, please press OK button to close the window.
The code for the warning window:
Title := "Please Confirm?", Sec := 30
SetTimer, Countdown, 1000
MsgBox, 64, %Title%, Will launch in %Sec% seconds, %Sec%
Return
Countdown:
ControlSetText, Static2, % "Will launch in " (Sec:=Sec-1) " seconds"
, %Title% ahk_class #32770
Return
Thanks!