2002-11-15 11:58:22 +00:00
|
|
|
Name "BgImage.dll test"
|
|
|
|
|
|
|
|
OutFile "BgImage Test.exe"
|
|
|
|
|
|
|
|
XPStyle on
|
|
|
|
|
|
|
|
Section
|
2002-11-15 12:06:10 +00:00
|
|
|
# the plugins dir is automatically deleted when the installer exits
|
|
|
|
InitPluginsDir
|
|
|
|
File /oname=$PLUGINSDIR\modern.bmp "${NSISDIR}\Contrib\Icons\modern.bmp"
|
|
|
|
File /oname=$PLUGINSDIR\checks1.bmp "${NSISDIR}\Contrib\Icons\checks1.bmp"
|
|
|
|
|
|
|
|
BgImage::Init /NOUNLOAD /FILLSCREEN $PLUGINSDIR\modern.bmp
|
2002-11-15 11:58:22 +00:00
|
|
|
|
|
|
|
MessageBox MB_OK "Next image?"
|
|
|
|
|
2002-11-15 12:06:10 +00:00
|
|
|
BgImage::SetImage /NOUNLOAD /FILLSCREEN $PLUGINSDIR\checks1.bmp
|
2002-11-15 11:58:22 +00:00
|
|
|
|
|
|
|
FindFirst $0 $1 $WINDIR\Media\*.wav
|
|
|
|
StrCmp $0 "" skipSound
|
|
|
|
moreSounds:
|
|
|
|
StrCmp $1 "" noMoreSounds
|
2002-11-15 12:06:10 +00:00
|
|
|
BgImage::Sound /NOUNLOAD /WAIT $WINDIR\Media\$1
|
2002-11-15 11:58:22 +00:00
|
|
|
MessageBox MB_YESNO "Another sound?" IDNO noMoreSounds
|
|
|
|
FindNext $0 $1
|
|
|
|
Goto moreSounds
|
|
|
|
|
|
|
|
noMoreSounds:
|
|
|
|
FindClose $0
|
|
|
|
skipSound:
|
|
|
|
|
|
|
|
BgImage::Destroy
|
|
|
|
SectionEnd
|