|
本帖最后由 依旧漂泊 于 2010-10-24 13:20 编辑
Run('des.exe')
If ProcessExists("des.exe") Then
$i=1
Do
ToolTip("正在启动软件"&@LF&"已用["&$i&"]秒",@DesktopWidth/2+2,@DesktopHeight/2-197)
Sleep(1000)
$i=$i+1
Until ProcessExists("des.exe")=0
SplashOff()
EndIf
到这里进程des.exe已经不存在了,ToolTip怎么窗口不会退出
AdlibRegister("listen")
GUICreate("", 0, 0)
While 1
$nMsg = GUIGetMsg("")
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func listen()
$title = WinGetTitle("修改标题")
If StringInStr($title, "修改标题") = 0 Then
WinSetTitle($title, "", "修改标题")
EndIf
If Not (ProcessExists("Aes.exe")) Then
Exit
EndIf
EndFunc ;==>listen
前面窗口是提示人家软件启动了几秒,
因为后面还要修改某软件的标题!
所以前面窗口必须推出!
请各位大大给个指示! |
评分
-
查看全部评分
|