'Quit' don't work in 'WELCOMEPAGE'
Hello
I Have this problem:
[...]I know that the function UserAbort is Colled but Quit don't work.
!define MUI_CUSTOMFUNCTION_ABORT UserAbort ;in top of the installer
[...]
Function UserAbort
StrCmp $some "yes" 0 +3
MessageBox MB_OK "Game Over"
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Test
Quit
FunctionEnd
===================EDIT================
I solve this witch Plug-in:
[...]But it is a bit silly
!define MUI_CUSTOMFUNCTION_ABORT UserAbort ;in top of the installer
[...]
Function UserAbort
StrCmp $some "yes" 0 +3
MessageBox MB_OK "Game Over"
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Test
KillProcDLL::KillProc $EXEFILE
FunctionEnd