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
|
2003-11-06 13:15:45 +00:00
|
|
|
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Header\nsis.bmp"
|
2002-11-19 15:54:03 +00:00
|
|
|
#optional
|
|
|
|
#File /oname=$PLUGINSDIR\splash.wav "C:\myprog\sound.wav"
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2003-09-12 14:01:29 +00:00
|
|
|
MessageBox MB_OK "Fading"
|
|
|
|
|
2002-11-19 15:54:03 +00:00
|
|
|
advsplash::show 1000 600 400 -1 $PLUGINSDIR\splash
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2003-09-12 14:01:29 +00:00
|
|
|
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
2005-09-16 11:27:51 +00:00
|
|
|
; '0' if everything closed normally, and '-1' if some error occurred.
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2003-09-12 14:01:29 +00:00
|
|
|
MessageBox MB_OK "Transparency"
|
2005-06-19 21:39:04 +00:00
|
|
|
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\orange-uninstall.bmp"
|
2003-09-12 14:01:29 +00:00
|
|
|
advsplash::show 2000 0 0 0x1856B1 $PLUGINSDIR\splash
|
|
|
|
Pop $0
|
2002-11-19 15:54:03 +00:00
|
|
|
|
2003-09-12 14:01:29 +00:00
|
|
|
MessageBox MB_OK "Transparency/Fading"
|
2003-11-06 13:15:45 +00:00
|
|
|
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\llama.bmp"
|
2004-02-06 16:56:30 +00:00
|
|
|
advsplash::show 1000 600 400 0x04025C $PLUGINSDIR\splash
|
2003-09-12 14:01:29 +00:00
|
|
|
Pop $0
|
2002-11-15 12:21:06 +00:00
|
|
|
|
2003-09-12 14:01:29 +00:00
|
|
|
Delete $PLUGINSDIR\splash.bmp
|
2002-11-15 12:21:06 +00:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Section
|
|
|
|
SectionEnd
|