Skip to content
⌘ NSIS Forum Archive

Changing the header

5 posts

Potz#

Changing the header

I was wondering how to change the header of the install as it changes from page to page

ex

hopefully the image works.

if not its the part of the user interface that has for ex. License Agreement, please review the license terms before installing Program 1.0. with a white background over the gray area.

Just wanted to know how to change text.

If I haven't explained well let me know so I can explain more
Afrow UK#
Are you using MUI?
If so, look in the manual under Page Settings > License Page Settings.

-Stu
Potz#
yeah but when I switch from a MUI to a Custom page the header still stays the same.

!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
;IP address change for client connecting to server
Page Custom serverIP

Just wondering what to do to change that.
Afrow UK#
See the section Custom Pages > Using InstallOptions for custom pages.

In custom pages you need to use:
!insertmacro MUI_HEADER_TEXT "text" "subtext"

-Stu
Potz#
Awesome that worked thanks 🙂 ... I think I tried something similar this before but it didn't work for some reason.