Skip to content
⌘ NSIS Forum Archive

setting the welcome page text

5 posts

aleksanteri#

setting the welcome page text

This is my first working MUI script I wrote (the reason why the others didn't work was the path), and I'm testing MUI to a Notepad installer.

My problem is now that even if I write a line with the code:

!define MUI_WELCOMEPAGE_TEXT "Welcome to the Notepad Install Program."

I still have the window empty (attachment)

EDIT: Oh and the same is happening with the finish page too.
kichik#
That's not the welcome page, that's the license page. You probably have some problem with the order of the macros and defines. Compare your script to an example script and take a look at the readme for the correct order.
aleksanteri#
The license page comes after that blank welcome page.

Oh and why I am getting these 23 warnings that say that there isn't a string on language table English...

I'm using the line
!insertmacro MUI_LANGUAGE "English" 
Afrow UK#
The order of Modern UI instructions is very important. Language macro's should be inserted after Page macro's for example.

-Stu