Skip to content
⌘ NSIS Forum Archive

Changing Install page title and header?

5 posts

gattogratto#

Changing Install page title and header?

I am having a hard time finding the MUI !define for these things. Anyone can give a tip? Thanks.
Afrow UK#
Like all other MUI pages, it's:

!define MUI_PAGE_HEADER_TEXT "blah"
!define MUI_PAGE_HEADER_SUBTEXT "blah"

Under General Page Settings.

-Stu
gattogratto#
That doesn't seem to change the install page. It's the one that says Installing
Please wait while xxx is being installed.
eyeinthesky43#
I think this is what you are looking for:

DetailPrint "Some text goes here..."

Use it in your installer sections.
Red Wine#
you have to use it like this:
; Instfiles page
!define MUI_PAGE_HEADER_TEXT "blah"
!define MUI_PAGE_HEADER_SUBTEXT "blah"
!insertmacro MUI_PAGE_INSTFILES