Skip to content
⌘ NSIS Forum Archive

how modify Page MUI_PAGE_INSTFILES

5 posts

hanen.jomaa#

how modify Page MUI_PAGE_INSTFILES

Hi,
please can you help me ?

I want modify the text in the page MUI_PAGE_INSTFILES modify the label of the button Install

and remove the button back.

Can I do that please?
T.Slappy#
To change text send WM_SETTEXT message to button.
Use ResHacker to get ID ($hwnd) of button - it is either 1 or 2 or 3 🙂.

To remove Back button simply set it's Visibility to not visible:
ShowWindow $hwnd ${SW_HIDE}