SplashTextOn / SplashTextOff

スプラッシュテキストウィンドウを表示・非表示する

SplashTextOff
SplashTextOn [, Width, Height, Title, Text]

Parameters

引数名説明
Width ウィンドウの幅を指定。デフォルトは200。
Height ウィンドウのタイトルバーを除く部分の高さを指定。デフォルトは0。
Title タイトルバーに表示されるテキストを指定。省略時は何も表示されない。
Text ウィンドウに表示されるテキストを指定。省略時は何も表示されない。

Remarks

SplashTextOnで最前面表示のウィンドウをスクリーンの中央に表示する。
スプラッシュテキストウィンドウは、スクリプト全体で1つを共有する。

Related

Progress, SplashImage, ToolTip, MsgBox, InputBox, FileSelectFile, FileSelectFolder, WinMove, WinSet

Example(s)

SplashTextOn, , , Just a simple title.
Sleep, 2000
SplashTextOn, 400, 300, Clipboard, The clipboard contains:`n%clipboard%
WinMove, Clipboard, , 0, 0  ; Move the splash window to the top left corner. 
Msgbox, Press OK to dismiss the SplashText
SplashTextOff