Archive: Text on "Browse for Folder" dialog (MUI)


Text on "Browse for Folder" dialog (MUI)
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


Look in the NSIS User Manual: "4.8.1.13 DirText" explains how to change the text on the "Browse for Folder" dialog

http://nsis.sourceforge.net/Docs/Chapter4.html#4.8.1

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