Sebi2020
27th October 2008 22:03 UTC
Change the "NSIS [VERSION] writing"
In each Installer you create, you see above the Back, Next and Cancel Button a writing like this "Nullsoft Install System 2.31". Does anybody know how I can change that in something like this: "example.com"?
(The writing is next to the horizontal line)
best regards
Sebi2020
QOAL
27th October 2008 22:19 UTC
The User Manual
BrandingText
/TRIM(LEFT|RIGHT|CENTER) text
Sets the text that is shown (by default it is 'Nullsoft Install System vX.XX') at the bottom of the install window. Setting this to an empty string ("") uses the default; to set the string to blank, use " " (a space). If it doesn't matter to you, leave it the default so that everybody can know why the installer didn't suck. heh. Use /TRIMLEFT, /TRIMRIGHT or /TRIMCENTER to trim down the size of the control to the size of the string.
Accepts variables. If variables are used, they must be initialized on .onInit.
E.G.
BrandingText "I like pies"
Sebi2020
28th October 2008 08:26 UTC
Thanks
Ah, okay, thx
deepcut
2nd November 2008 14:19 UTC
You can also use LangString if you need to make it multilingual.
LangString ^Branding ${LANG_ENGLISH} "Nullsoft Install System"