Skip to content
⌘ NSIS Forum Archive

UnDirText

7 posts

Sp33dy G0nz4l3s#

UnDirText

Hi, I want to change the UnDirText but I don't no how I can do this. Could you say me the MUI_... code for this?
Comm@nder21#
try this:

...

!insertmacro MUI_PAGE_DIRECTORY

...

!define MUI_DIRECTORYPAGE_TEXT_DESTINATION "yourtext"
!insertmacro MUI_UNPAGE_DIRECTORY

...
Sp33dy G0nz4l3s#
mmh no that isn't it.

I mean this text:

Did anybody now how I can change it.

Thanks for your help
Red Wine#
.............................
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "German"

LangString ^UnDirText ${LANG_ENGLISH} "English String"
LangString ^UnDirText ${LANG_GERMAN} "German String"

............................
Sp33dy G0nz4l3s#
Hi, when ich use this comes a lot of errors

LangString "MUI_UNTEXT_FINISH_SUBTITLE" is not set in language table of language 1033
LangString "MUI_UNTEXT_ABORT_TITLE" is not set in language table of language 1033
LangString "MUI_UNTEXT_ABORT_SUBTITLE" is not set in language table of language 1033

This means that I must define all LangString?

Gives it another possibility?

Thanks
Red Wine#
Oops! I didn't see the attached image, sorry!
It's what kichik noticed above!

!define MUI_UNCONFIRMPAGE_TEXT_TOP "text"
!insertmacro MUI_UNPAGE_CONFIRM

Simply from MUI documentation!