Archive: Need help - MUI_UNPAGE_WELCOME


Need help - MUI_UNPAGE_WELCOME
Is their any way to set 3LINES title in the Uninstall welcome page??

!define MUI_UNWELCOMEPAGE_TITLE_3LINES

Doesn't work!

Thanks!


Tried...
!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_WELCOME
..?

As it says in documents,

Note: There is no difference between installer and uninstaller page settings.
-Stu

@ Afrow UK:
THX for the fast answer!

It works.

many THX


I must be missing something because I can't seem to get this to work. Here is my code:

!define MUI_ABORTWARNING
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Orange-Full-MoNKi\Header\orange.bmp"
!define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Orange-Full-MoNKi\Wizard\orange.bmp"
!define MUI_COMPONENTSPAGE_SMALLDESC
!define MUI_WELCOMEPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TEXT "BLAH"
!define MUI_FINISHPAGE_TITLE_3LINES
!define MUI_FINISHPAGE_LINK "Visit the NSIS website for the latest news, FAQs and support"
!define MUI_FINISHPAGE_LINK_LOCATION "http://nsis.sf.net/"
!define MUI_FINISHPAGE_REBOOTSUPPORT
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Orange-Full-MoNKi\Wizard\orange.bmp"
!define MUI_UNFINISHPAGE_NOAUTOCLOSE

!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH


Am I missing something obvious?


Can't get what to work? What does not work?

-Stu


Sorry. The 3LINE command on my Uninstaller welcome and finish pages.


Try redefining it before insterting the uninstall page macros.

-Stu


:up: Thanks. That did it.