我也来一个,自己经常用的......_sptxt("这是第一个例子", 900,1,1000);显示1000毫秒后自动取消显示
Sleep(1000)
_sptxt("这是第二个例子");不自动取消显示
Sleep(2000)
_sptxt("这是第三个例子", @DesktopWidth / 4 );新的会冲掉上个未取消的sp
Sleep(2000)
SplashOff();手动取消显示
Sleep(2000)
_sptxt("这是第四个例子","",1,2000) ;不指定宽度的默认为 @DesktopWidth / 3
Func _sptxt($txt, $widthy = "",$spoff = 0,$sleeptime = 1000);屏幕正中显示一个提示工具条
If $widthy = "" Then $widthy = @DesktopWidth / 3
SplashTextOn("调试过程", $txt, $widthy, @DesktopHeight / 20, -1, -1, 33, "", @DesktopHeight / 60)
If $spoff = 1 Then
Sleep($sleeptime)
SplashOff()
EndIf
EndFunc
|