Archive: Black Brandingtext


Black Brandingtext
  Hello,

how can I make the brandingtext black?

Thanks in advance.
Peter, BE.


If using the Modern UI:

!define MUI_CUSTOMFUNCTION_GUIINIT BlackBranding


>Function BlackBranding
GetDlgItem$0 $HWNDPARENT 1028
EnableWindow$0 1
FunctionEnd
>
If using ExperienceUI:

"Nullsoft Install System ${NSIS_VERSION}" 

(Actually this will use branding text colors defined in current skin - highly recommended)
See ExperienceUI docs for how to change Branding Text color

If using classic UI:

onGUIInit

GetDlgItem$0 $HWNDPARENT 1028
EnableWindow$0 1
FunctionEnd
>
-dandaman32

How do you edit what that text says?


BrandingText ...?

-Stu


With Classic UI:

BrandingText "Your text here"


With Modern UI:

!define MUI_BRANDINGTEXT "Your text here"


With ExperienceUI:

!define XPUI_BRANDINGTEXT "Your text here"


-dandaman32

thank you