Skip to content
⌘ NSIS Forum Archive

How can modify directory page

5 posts

Guest#

How can modify directory page

I use modern interface, but I would change the default text for directory page
!insertmacro MUI_PAGE_DIRECTORY

How can change all text in this step?
Will be better add my text for advise user that must select particular directory for example:
Select Test directory where you find test.exe

Best regards to all.
Homeless
Yathosho#
from the MUI Readme:

MUI_DIRECTORYPAGE_TEXT_TOP text
Text to display on top of the page.

MUI_DIRECTORYPAGE_TEXT_DESTINATION text
Text to display on the destination folder frame.
Yathosho#
the answer is the in the MUI Readme to which i previously pointed you.

MUI_PAGE_HEADER_TEXT text
Text to display on the header of the page.

MUI_PAGE_HEADER_SUBTEXT text
Subtext to display on the header of the page.

you have to define these before calling the page where you want to display these.