In my installer, I'm using
!define MUI_WELCOMEPAGE_TITLE_3LINES
!define MUI_FINISHPAGE_TITLE_3LINES
because my Name is longish, and it works nicely. Is there an equivalent for the uninstaller?
TIA
3LINES for uninstaller
3 posts
Use the same define(s) but repeat it with your uninstall insertmacro like so:
!define MUI_FINISHPAGE_TITLE_3LINES
!insertmacro MUI_PAGE_FINISH
!define MUI_FINISHPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_FINISH
The same would go for MUI_WELCOMEPAGE_TITLE_3LINES.
!define MUI_FINISHPAGE_TITLE_3LINES
!insertmacro MUI_PAGE_FINISH
!define MUI_FINISHPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_FINISH
The same would go for MUI_WELCOMEPAGE_TITLE_3LINES.
Thanks, worked nicely. And now I have found this in the MUI documentation:
"Page Settings apply to a single page and should be set before inserting a page macro. If you have multiple pages of one type and you want to set a setting for all them, put the setting before each page macro."
"Page Settings apply to a single page and should be set before inserting a page macro. If you have multiple pages of one type and you want to set a setting for all them, put the setting before each page macro."