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.
setting the welcome page text
5 posts
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.
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
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" The order of Modern UI instructions is very important. Language macro's should be inserted after Page macro's for example.
-Stu
-Stu
Thanks! I had the languages before pages. 🙂 And I'm no longer getting the warnings.