home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / CMCD0304.ISO / Software / Freeware / Programare / nullsoft / nsis20.exe / Contrib / Banner / Example.nsi < prev    next >
Encoding:
Text File  |  2003-01-27  |  475 b   |  23 lines

  1. # Look at Readme.txt for usage alongside with the Modern UI
  2.  
  3. Name "Banner.dll test"
  4.  
  5. OutFile "Banner Test.exe"
  6.  
  7. ShowInstDetails show
  8.  
  9. Function .onInit
  10.     Banner::show /NOUNLOAD "Calculating important stuff..."
  11.     again:
  12.         IntOp $0 $0 + 1
  13.         Sleep 1
  14.         StrCmp $0 2000 0 again
  15.     Banner::destroy
  16. FunctionEnd
  17.  
  18. Section
  19.     DetailPrint "Using previous calculations to quickly calculate 1*2000..."
  20.     Sleep 1000
  21.     DetailPrint "Eureka! It's $0!!!"
  22.     DetailPrint ""
  23. SectionEnd