I use MUI and I have a small problem with custom pages. Actually, I check some keys in the registry. If they exist, the installation carries on. If not, a custom page appears asking the user to enter some parameters.
But it doesn't work. The page appears but the buttons are disabled and I can't go to the next steps of the installation. What's wrong?
ReadRegStr "$REG_VAR" HKLM SOFTWARE\My app "param"
StrCmp "$REG_VAR" "" Error ok
Error: !insertmacro MUI_INSTALLOPTIONS_DISPLAY "custompage.ini"
ok: {next steps}
Thx for help !