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
3 lines text in welcome page and finish page (installer and uninstaller)
5 posts
I believe you need to define them twice, once before the installer pages and once before the uninstaller pages.
Stu
Stu
Originally posted by Afrow UKCan you give some working example?
I believe you need to define them twice, once before the installer pages and once before the uninstaller pages.
Stu
!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
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_PAGE_*
!define MUI_FINISHPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_*
Stu
Originally posted by Afrow UKOK. Thanks, now it works. The line order is important...
!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
Regards,
-Pawel