I've just got my installer working on Modern UI 1.65 and it's just like it was before (and better!)
After doing a test install, I noticed that after all files have been installed and the CompletedText has been displayed, the MUI_HEADER_TEXT gets changed.
The text it changes to is not what I want for my installer (it needs to have a variable fixed into it.)
What is the define for this new text?
Thanks
-Stu
Modern UI question
5 posts
You can customize all texts. Define MUI_TEXT_FINISH_TITLE and MUI_TEXT_FINISH_SUBTITLE before the MUI_LANGUAGE macro.
Is there anyway to completely remove the change of MUI_HEADER_TEXT onInstSuccess, so that my custom !insermacro MUI_HEADER_TEXT in sections stay all the way to the end, without this new text over-writing it?
-Stu
-Stu
For now, use the same texts as you have set earlier.
I have it changing the MUI_HEADER_TEXT depending on what has been installed, and what settings the user has set, so I had to
!define MUI_TEXT_FINISH_TITLE $6
!define MUI_TEXT_FINISH_SUBTITLE $7
and then at the right time after installation I have
StrCpy $6 <whatever>
StrCpy $7 <whatever>
-Stu
!define MUI_TEXT_FINISH_TITLE $6
!define MUI_TEXT_FINISH_SUBTITLE $7
and then at the right time after installation I have
StrCpy $6 <whatever>
StrCpy $7 <whatever>
-Stu