Creates a customizable image popup window.
SplashImageOn ( "title", "file" [, width [, height [, x pos [, y pos [, opt]]]]] )
Parameters
title | Title for splash window. |
file | full path\filename of image (BMP, GIF, or JPG) |
width | [optional] width of window in pixels. (default is 500) |
height | [optional] height of window in pixels. (default is 400) |
x pos | [optional] position from left (in pixels) of splash window. (default is centered) |
y pos | [optional] position from top (in pixels) of splash window. (default is centered) |
opt | [optional] Add up the options you want. Default is 'always on top/with title' 1 = Thin bordered titleless window 2 = Without "always on top" attribute 16 = Windows can be moved |
Return Value
None.
Remarks
To skip an optional parameter, leaving it's default value intact, use a value of -1.
Related
SplashOff, SplashTextOn
Example
$destination = @TempDir & "\mySplash.bmp"
FileInstall("C:\foo.bmp", $destination) ;source must be literal string
SplashImageOn("Splash Screen", $destination)
Sleep(3000)
SplashOff()