Hello,
how can I make the brandingtext black?
Thanks in advance.
Peter, BE.
Black Brandingtext
6 posts
If using the Modern UI:
See ExperienceUI docs for how to change Branding Text color
If using classic 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 -dandaman32How do you edit what that text says?
BrandingText ...?
-Stu
-Stu
With Classic UI:
With Modern UI:BrandingText "Your text here"
With ExperienceUI:!define MUI_BRANDINGTEXT "Your text here"
-dandaman32!define XPUI_BRANDINGTEXT "Your text here"
thank you