Skip to content
⌘ NSIS Forum Archive

InstallFiles pages skippes

7 posts

martijntijn#

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?
martijntijn#
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.
martijntijn#
Jupz, thanx, i now got it working!


; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_NOAUTOCLOSE
; Finish page
Afrow UK#
You sure that works? It's an interface setting so it should only work if it goes before all pages.

Stu
martijntijn#
Yes it works. I now must click proceed after the files are copied to view the finished page.