|
|
#1 |
|
Major Dude
Join Date: May 2003
Posts: 676
|
change window titel from ABORT
This is the original text:
code: This is what i made so far code: But the windows title of that popup is still "${MUI_PRODUCT} ${MUI_VERSION} Setup" How can i change this? ## i found a part in the english.nlf line 13 '%s Setup' Can i override it? Or can i use my own modified NLF referenced in my script? Greets, Brummelchen |
|
|
|
|
|
#2 |
|
Moderator
Join Date: Nov 2002
Location: Birmingham, England
Posts: 8,202
|
Try
Caption "${MUI_NAME}" I also wanted to override the "Setup" bit a long time ago, but I cannot remember exactly how I did it. I never changed the source. -Stu Need an installer? http://www.afrowsoft.co.uk |
|
|
|
|
|
#3 |
|
M.I.A.
[NSIS Dev, Mod] Join Date: Oct 2001
Location: Israel
Posts: 11,337
|
You're not supposed to insert the macro again but instead just define the value like this:
!define MUI_TEXT_ABORTWARNING "new text" before you use the MUI_LANGUAGE macro. The MUI_LANGUAGEFILE_STRING checks if the value specified is already defined and if so it will use it instead of the default value. As for "%s setup", it is the default caption and therefore should be changed using the Caption command. NSIS FAQ | NSIS Home Page | Donate $ "I hear and I forget. I see and I remember. I do and I understand." -- Confucius |
|
|
|
|
|
#4 |
|
Major Dude
Join Date: May 2003
Posts: 676
|
thx u 2
CAPTION works because my custom pages have own captions. Greets, Brummelchen |
|
|
|
![]() |
|
|||||||
| Thread Tools | Search this Thread |
| Display Modes | |
|
|