本帖最后由 chengjinn 于 2009-9-11 16:44 编辑 $flag=True
local $inpwd,$password='knights'
HotKeySet("{SPACE}", "PAUSE")
while 1
Sleep(100)
if winexists('我的电脑') then winkill('我的电脑')
WEnd
Func PAUSE()
If $flag = True Then
$inpwd=inputbox('输入暂停密码','请输入密码','','*M16','','','','',6)
if $inpwd=$password then
Tooltip('暂停中', @Desktopwidth-120,@Desktopheight-88,'程序提示',1,1)
Sleep(3000)
tooltip('')
$flag = False
Else
Exit
EndIf
Else
Tooltip('继续运行', @Desktopwidth-120,@Desktopheight-88,'程序提示',1,1)
Sleep(3000)
tooltip('')
$flag = True
EndIf
EndFunc ;==>PAUSE
这个继续运行时要怎么跳回主程序啊?~``
按热键暂停就可以
只要在暂停那里加上一个WHILE 1就可以了.
关于我问的问题真不好意思.自已犯傻了.
函数运行完后就会自动跳回主程序的..
自已测试好了.`.`. |