Archive: Problems displaying finish page


Problems displaying finish page
I've written an install using an MUI interface. Everything is working fine except that the finish page is automatically closing. It must be something simple, but I don't see it.

Here's a bit of code:
!define MUI_ABORTWARNING
!define MUI_ICON "setup.ico"
!define MUI_UNICON "unsetup.ico"
!define MUI_LICENSEPAGE_RADIOBUTTONS
!define MUI_FINISHPAGE_TEXT "blah blah blah"
!define MUI_FINISHPAGE_TITLE "blah blah blah"
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_INSTFILESPAGE_FINISHHEADER_TEXT "blah blah blah"

!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "lic.txt"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH


Hmm thought it was !define MUI_FINISHPAGE_NOAUTOCLOSE...dunno what it is if it isn't that.


The issue has been resolved. I found it was the order in which I had the lines of my script.

I rebuilt my entire script using the built-in wizard of HM EDIT (http://hmne.sourceforge.net/) and everything was fine.

Thanks!