I have a little problem with my UltraModernUI installer.
I'm trying to add an Abort page to my installer but it always jump to my custom page instead to UMUI_PAGE_ABORT when i click on the cancel button on one of the pages.
I'm using:
!insertmacro UMUI_PAGE_ABORT I have one custum page (and the other built-in):Page custom EnterPasswordPage ValidatePassword
...
Function EnterPasswordPage
!insertmacro MUI_HEADER_TEXT "Enter Installation Password" "Enter installation password"
Push $R0
InstallOptions::initDialog /NOUNLOAD "$TEMP\Password.ini"
Pop $R0
...
FunctionEnd I have WELCOME, LICENSE, COMPONENTS, myCustom, INSTFILES, FINISH pages that all of them are working perfectly but when i click on cencel in one of them myCustom page pops up.... 🙁Done anyone know what the problem is?? please help...
Thanks.