custom page
Hi,
I want add a text near the NSIS icon on a custom page.
like this screenshot where the text is "Choose Components"
http://upload.wikimedia.org/wikipedi...screenshot.png
Thank's
Sio.
Archive: custom page
custom page
Hi,
I want add a text near the NSIS icon on a custom page.
like this screenshot where the text is "Choose Components"
http://upload.wikimedia.org/wikipedi...screenshot.png
Thank's
Sio.
MUI_PAGE_HEADER_TEXT & MUI_PAGE_HEADER_SUBTEXT.
See the MUI2 readme: http://nsis.sourceforge.net/Docs/Mod...02/Readme.html
Ok thank you.
LangString PAGE_TITLE ${LANG_ENGLISH} "Title"
LangString PAGE_SUBTITLE ${LANG_ENGLISH} "Subtitle"
!insertmacro MUI_HEADER_TEXT $(PAGE_TITLE) $(PAGE_SUBTITLE)
Ah, right, custom page. My bad.