Persistent background image plugin
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1627 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b2261023af
commit
204ad0ad15
6 changed files with 404 additions and 0 deletions
35
Contrib/BgImage/BgImage.txt
Normal file
35
Contrib/BgImage/BgImage.txt
Normal file
|
@ -0,0 +1,35 @@
|
|||
BgImage.DLL - NSIS extension DLL
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Displays an image behind the NSIS window.
|
||||
Can also play WAVs.
|
||||
|
||||
Note
|
||||
~~~~
|
||||
|
||||
All but the last used function (which should be Destroy) must use /NOUNLOAD so the image window won't be destroyed before it should. Therefore, this DLL requires NSIS 2.0a7 and above.
|
||||
|
||||
Available functions
|
||||
~~~~~~~~~~~~~~
|
||||
|
||||
Init path_to_bitmap [/FILLSCREEN]
|
||||
Create a new image window
|
||||
Use /FILLSCREEN to make the image fill the screen
|
||||
Do not use in .onInit!
|
||||
|
||||
SetImage path_to_bitmap [/FILLSCREEN]
|
||||
Sets a new image to the current timage window
|
||||
Use /FILLSCREEN to make the image fill the screen
|
||||
Do not use in .onInit!
|
||||
|
||||
Destroy
|
||||
Destroys the current image window
|
||||
|
||||
Sound path_to_wav [/WAIT]
|
||||
Plays a wave file
|
||||
Use /WAIT to wait for the sound to finish playing
|
||||
|
||||
Credits
|
||||
~~~~~~~
|
||||
|
||||
Coded by Amir Szekely, aka KiCHiK
|
Loading…
Add table
Add a link
Reference in a new issue