Skip to content
⌘ NSIS Forum Archive

Change MUI_HEADER_TEXT on license page

3 posts

rsegal#

Change MUI_HEADER_TEXT on license page

On custom pages you can change the header text by modifying the MUI_HEADER_TEXT define and then displaying the dialog. How can I do this for the license page?
Red Wine#
!define MUI_PAGE_HEADER_TEXT "new_lic_header_text"
!define MUI_PAGE_HEADER_SUBTEXT "new_lic_subheader_text"
!insertmacro MUI_PAGE_LICENSE "license_file"
rsegal#
Well look at that. Works great. Could've sworn I tried that Red but clearly I didn't. Thanks very much for the help.