Skip Custom Page?
Searching for the answer returns alternate paths that
are useable solutions to questions of a different quest.
I know to use abort in a function before
the custom page, but when ever I do that
it shows the custom page and skips the
license page. Far as I can see the code
below should do the trick.
!define MUI_PAGE_CUSTOMFUNCTION_PRE FUNCTIONNAME
Page Custom PAGENAME
!insertmacro MUI_PAGE_LICENSE
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
Function FUNCTIONNAME
abort
FunctionEnd
Thinking that it was the order, I placed LICENSE at the top
and it skips the DIRECTORY page. The code just doesn't
want to apply itself to a custom page, only a MUI official
page. No matter what order I place it in. The custom page
never gets effected.
How do you skip a custom page correctly?
-Michael