Pawel
26th September 2007 18:28 UTC
3 lines text in welcome page and finish page (installer and uninstaller)
Hello
Can you tell me, how to setup WELCOME_TITLE text with my text for installer and uninstaller in welcome page and finish page? I also want 3 lines there.
Something like this, but with 3 lines:
!define MUI_WELCOMEPAGE_TITLE "Some text"
I use this pages for installer:
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_FINISH
I use this pages for uninstaller:
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_FINISH
I tried to use MUI_FINISHPAGE_TITLE_3LINES and MUI_WELCOMEPAGE_TITLE_3LINES for installer, but it doesn't works. Why?
-pawel
Afrow UK
26th September 2007 18:36 UTC
I believe you need to define them twice, once before the installer pages and once before the uninstaller pages.
Stu
Pawel
26th September 2007 18:41 UTC
Originally posted by Afrow UK
I believe you need to define them twice, once before the installer pages and once before the uninstaller pages.
Stu
Can you give some working example?
Afrow UK
26th September 2007 18:59 UTC
!define MUI_FINISHPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_PAGE_*
!define MUI_FINISHPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_*
Stu
Pawel
26th September 2007 19:34 UTC
Originally posted by Afrow UK
!define MUI_FINISHPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_PAGE_*
!define MUI_FINISHPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_*
Stu
OK. Thanks, now it works. The line order is important...
Regards,
-Pawel