如何暂停程序暂停之后如何继续运行[已解决]
本帖最后由 黑色袜子 于 2010-11-26 16:24 编辑HotKeySet("{F4}", "t_quit")
HotKeySet("{F11}", "t_pause")
HotKeySet("{F12}", "t_run")
While 1
sleep(3000)
msg(0,"","test")
wend
func t_pause()
;这里暂停了
endfunc
func t_run()
;这里继续运行程序要返回到有对话框那里
endfunc
func t_quit()
exit
endfunc
一直没搞明白func的函数是怎么跳转的,开始还以为和批处理样,
哪位大侠能帮忙完整下 Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("+!d", "ShowMessage");Shift-Alt-d
;;;; Body of program would go here ;;;;
While 1
Sleep(100)
WEnd
;;;;;;;;
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc 本帖最后由 黑色袜子 于 2010-11-26 15:21 编辑
回复 2# king8462
请问我如何到回去??? 回复 3# 黑色袜子
按PAUSE键会暂停,再次按PAUSE键会继续! 回复 4# king8462
谢谢,之前我也看到这个,但是不知道怎么继续,原来是这样,呵呵!!!
页:
[1]