2002-11-24 18:50:31 +00:00
|
|
|
Banner.dll shows a banner with customizable text.
|
|
|
|
|
2003-01-27 15:44:13 +00:00
|
|
|
There are only two functions, show and destroy. Show must be called
|
2002-11-24 18:50:31 +00:00
|
|
|
with the /NOUNLOAD flag or else it won't work. Show takes one argument
|
|
|
|
which is the text to show and destroy takes no arguments.
|
|
|
|
|
2003-01-27 15:44:13 +00:00
|
|
|
To use with the MUI use:
|
|
|
|
|
|
|
|
Banner::show /NOUNLOAD /set 76 "text to replace Please wait while Setup is loading..." "other text as normal"
|
|
|
|
|
|
|
|
You can use multiple /SETs to change the text of multiple labels. For example:
|
|
|
|
|
|
|
|
Banner::show /NOUNLOAD /set 76 "bah #1" /set 54 "bah #2" "other text as normal"
|
|
|
|
|
|
|
|
The second parameter for /set is the ID of the control that its text should be replaced in the dialog.
|
|
|
|
|
2002-11-24 18:50:31 +00:00
|
|
|
Look at Example.nsi for an example.
|
|
|
|
|
|
|
|
Created by Amir Szekely (aka KiCHiK)
|