Archive: Small question?


Small question?
Is there anyway to remove that little bar that says

Nullsoft Install System v2.10
thats right above the next back and cancel buttons.

NSIS Docs:

4.8.1.6 BrandingText
/TRIM(LEFT|RIGHT|CENTER) text

Sets the text that is shown (by default it is 'Nullsoft Install System vX.XX') in 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.


thats giving me invalid command

tried
/TRIMLEFT " "
/TRIMRIGHT " "
/TRIMCENTER " "


this is using modern UI BTW.


Works fine here (NSIS v2.09)
I guess you must be using an older version of NSIS?

BrandingText /TRIMLEFT " "

-Stu


All I use is

BrandingText ""

and this works fine.


Use:

BrandingText " " ;This is BrandingText <space> " <space> "


Of course it's good when people know you use nsis 'cause it's the best installer out there...

-dandaman32