Skip to content
⌘ NSIS Forum Archive

Black Brandingtext

6 posts

PETER&BRENT#

Black Brandingtext

Hello,

how can I make the brandingtext black?

Thanks in advance.
Peter, BE.
dandaman32#edited
If using the Modern UI:
!define MUI_CUSTOMFUNCTION_GUIINIT BlackBranding
Function BlackBranding
  GetDlgItem $0 $HWNDPARENT 1028
  EnableWindow $0 1
FunctionEnd 
If using ExperienceUI:
!define XPUI_BRANDINGTEXT "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:
Function .onGUIInit
  GetDlgItem $0 $HWNDPARENT 1028
  EnableWindow $0 1
FunctionEnd 
-dandaman32
dandaman32#
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