Archive: setting MUI_FINISHPAGE_RUN_NOTCHECKED at runtime


setting MUI_FINISHPAGE_RUN_NOTCHECKED at runtime
Hi,

wondering if anybody can help me.

I would like to decide at runtime whether or not the checkbox in the finish page is default ticked or not. I tried to skip around the !define however it seems these are evaluated at run time. Can anybody suggest how i might be able to achieve this?

thanks

Steve


Try to use


!insertmacro MUI_INSTALLOPTIONS_WRITE "ioSpecial.ini" "Field 4" "State" val
inside finish page Pre-function. Where val = 1 - to checked state, val = 0 - to unchecked.

thats excellent, exactly what i needed thanks