!define MUI_PAGE_CUSTOMFUNCTION_SHOW showDir
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE leaveDir
!insertmacro MUI_PAGE_DIRECTORY
Page custom showcopy leavecopy
;======================
Function showDir
StrCpy $R9 4
FunctionEnd
;======================
Function leaveDir
Call WriteCopy
FunctionEnd
;======================
in page directory...
how to next goto page custom showcopy leavecopy readly!..
and goto back to page directory (error) not show
back to page directory
2 posts
if the leave function calls "Abort", the installer will stay on the page.
example:
example:
Function leaveDir
MessageBox MB_YESNO "Stay?" IDNO +2
Abort
FunctionEnd