Hi,
I'm building an installer for a really picky customer. And he really wants the text which is displayed in the "Browse for Folder" dialog modified. You, know, the dialog you get when you press the "browse..." button in the directory page.
I couldn't find a define to do this, so can anyone tell me if it's possible without editing the language files?
Of was this text missed as a text that can be modified? If so will it be added?
Thanks!
Remco
Text on "Browse for Folder" dialog (MUI)
3 posts
Look in the NSIS User Manual: "4.8.1.13 DirText" explains how to change the text on the "Browse for Folder" dialog
So you could use something like this:
So you could use something like this:
DirText "" "" "" "Select the folder for XYZ"
!insertmacro MUI_PAGE_DIRECTORY
Ah thanx, it works like a charm. I didn't think to look for it in the normal help.
Remco
Remco