Afrow UK
31st May 2003 17:26 UTC
Modern UI question
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
Joost Verburg
31st May 2003 18:38 UTC
You can customize all texts. Define MUI_TEXT_FINISH_TITLE and MUI_TEXT_FINISH_SUBTITLE before the MUI_LANGUAGE macro.
Afrow UK
31st May 2003 20:18 UTC
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
Joost Verburg
31st May 2003 20:40 UTC
For now, use the same texts as you have set earlier.
Afrow UK
31st May 2003 21:35 UTC
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