Skip to content
⌘ NSIS Forum Archive

How define MUI_PAGE_CUSTOMFUNCTION_SHOW function for my page (Page custom)?

4 posts

anonym#

How define MUI_PAGE_CUSTOMFUNCTION_SHOW function for my page (Page custom)?

I'm using MUI.

There is opportunity define the MUI_PAGE_CUSTOMFUNCTION_SHOW function for MUI_PAGE_COMPONENTS, MUI_PAGE_DIRECTORY, ...

How define MUI_PAGE_CUSTOMFUNCTION_SHOW function for my page (Page custom)?

Thank you
opher#
Hi,
You do that with the Page command, as in:
Page custom MyCustomPageInit MyCustomPageLeave
Where MyCustomPageInit and MyCustomPageLeave are functions defined in your script. Note that there is no _SHOW function.
Joost Verburg#
Use the INITDIALOG / SHOW macros for InstallOptions, as explained in the Modern UI / InstallOptions documentation.