martijntijn
1st November 2007 09:59 UTC
InstallFiles pages skippes
The install-files-page is skipped without my confirmation. This pages flashes for 1 seconds when its switch to the finished-page. I would like to click a button to proceed to the finished-page.
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!insertmacro MUI_PAGE_FINISH
This is the code, do i need to place somekind of 'wait/ask' command?
Anders
1st November 2007 11:32 UTC
MUI_FINISHPAGE_NOAUTOCLOSE
martijntijn
1st November 2007 11:57 UTC
this wont work, because i dont need the finish-page to NoAutoClose, but the INSTFILES-page 'NoAutoProceed'
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
"Before proceed to the next page i want to push the 'proceed' button."
; Finish page
!insertmacro MUI_PAGE_FINISH
After all the files are copied it automaticaly proceed to the finished page. But i want to see my log to check things. So when all the files are copied, i want to be able to read the log and click 'proceed' to go the finish-page.
Afrow UK
1st November 2007 13:14 UTC
No, MUI_FINISHPAGE_NOAUTOCLOSE is what you want. Try it.
Stu
martijntijn
1st November 2007 13:52 UTC
Jupz, thanx, i now got it working!
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_NOAUTOCLOSE
; Finish page
Afrow UK
1st November 2007 14:14 UTC
You sure that works? It's an interface setting so it should only work if it goes before all pages.
Stu
martijntijn
1st November 2007 14:17 UTC
Yes it works. I now must click proceed after the files are copied to view the finished page.