;MsgBox内容的20秒倒计时
Secs := 20
SetTimer, CountDown, 1000
MsgBox, 1, 电脑关机, 自动关机 倒计时 %Secs% 秒?, %Secs%
SetTimer, CountDown, Off
;;;IfMsgBox Ok
;;;Shutdown, 8
Return
CountDown:
Secs -= 1
ControlSetText,Static1,自动关机 倒计时 %Secs% 秒?,电脑关机 ahk_class #32770
Return
/*
;MsgBox标题的20秒倒计时
Secs := 20
SetTimer, CountDown, 1000
MsgBox, 1, 电脑关机 倒计时 20 秒, 允许自动关机?, %Secs%
SetTimer, CountDown, Off
;IfMsgBox Ok
;Shutdown, 8
Return
CountDown:
Secs -= 1
WinSetTitle, 电脑关机 倒计时,, 电脑关机 倒计时 %Secs% 秒
Return
*/
/*
;Tooltip的20秒倒计时
Loop 20
{
ToolTip, % 21 - A_Index ; if you just use A_Index it starts at 1 2 3 etc
Sleep 1000
}
Tooltip, 0
*/
暂无讨论,说说你的看法吧