Example.nsi 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Name "AdvSplash.dll test"
  2. OutFile "AdvSplash Test.exe"
  3. XPStyle on
  4. Function .onInit
  5. # the plugins dir is automatically deleted when the installer exits
  6. InitPluginsDir
  7. File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Header\nsis.bmp"
  8. #optional
  9. #File /oname=$PLUGINSDIR\splash.wav "C:\myprog\sound.wav"
  10. MessageBox MB_OK "Fading"
  11. advsplash::show 1000 600 400 -1 $PLUGINSDIR\splash
  12. Pop $0 ; $0 has '1' if the user closed the splash screen early,
  13. ; '0' if everything closed normally, and '-1' if some error occurred.
  14. MessageBox MB_OK "Transparency"
  15. File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\orange-uninstall.bmp"
  16. advsplash::show 2000 0 0 0x1856B1 $PLUGINSDIR\splash
  17. Pop $0
  18. MessageBox MB_OK "Transparency/Fading"
  19. File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\llama.bmp"
  20. advsplash::show 1000 600 400 0x04025C $PLUGINSDIR\splash
  21. Pop $0
  22. Delete $PLUGINSDIR\splash.bmp
  23. FunctionEnd
  24. Section
  25. SectionEnd