2002-11-15 12:21:06 +00:00
|
|
|
Name "AdvSplash.dll test"
|
|
|
|
|
|
|
|
OutFile "AdvSplash Test.exe"
|
|
|
|
|
|
|
|
XPStyle on
|
|
|
|
|
|
|
|
Function .onInit
|
2002-11-19 15:54:03 +00:00
|
|
|
# the plugins dir is automatically deleted when the installer exits
|
|
|
|
InitPluginsDir
|
|
|
|
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Makensisw\logo.bmp"
|
|
|
|
#optional
|
|
|
|
#File /oname=$PLUGINSDIR\splash.wav "C:\myprog\sound.wav"
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2002-11-19 15:54:03 +00:00
|
|
|
advsplash::show 1000 600 400 -1 $PLUGINSDIR\splash
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2002-11-19 15:54:03 +00:00
|
|
|
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
|
|
|
; '0' if everything closed normal, and '-1' if some error occured.
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2002-11-19 15:54:03 +00:00
|
|
|
MessageBox MB_OK "Now with transparency"
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2002-11-19 15:54:03 +00:00
|
|
|
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Icons\modern.bmp"
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2002-11-19 15:54:03 +00:00
|
|
|
advsplash::show 1000 600 400 0xFF00FF $PLUGINSDIR\splash
|
|
|
|
|
|
|
|
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
|
|
|
; '0' if everything closed normal, and '-1' if some error occured.
|
|
|
|
MessageBox MB_OK "$0"
|
2002-11-15 12:21:06 +00:00
|
|
|
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Section
|
|
|
|
SectionEnd
|