agree before install
trying to add a check box on a custom page so they have to click it before they can click install. I can't even get the check box to show up using ${NSD_CreateCheckbox} 180 90 5u 100% ""
9 posts
!define MUI_LICENSEPAGE_CHECKBOX"agree.txt" contains whatever they have to agree to (you change the name of the .txt file)
!insertmacro MUI_PAGE_LICENSE "agree.txt"
Originally posted by jpderuiter...
the 100% given was for the width, so that should not be a problem.
Originally posted by IYIaster...
trying to add a check box on a custom page so they have to click it before they can click install. I can't even get the check box to show up using ${NSD_CreateCheckbox} 180 90 5u 100% ""
From the nsDialogs Documentation
${NSD_Create*} x y width height text
Originally posted by AnimaetherThat's exactly what I'm doing you are awesome.
yeah, but he wants it on his custom page. For example, he might have a page that checks system resources and determines that the user has only 1GB of RAM which might severely hamper the application's performance. So he could include a checkbox that states "I accept that because of limited system resources, the installed program may not perform optimally" or somesuch before allowing an installation, to prevent the user from e-mailing about the poor performance.
anyway.
IYIaster... the reason you're not seeing it is probably because you made it waaaaaaay too tall; 100% of the page's height, 90 pixels from the top.. probably falls off-screen.
try '180 90 10u 10u' or '180 90 16 16'. Note that the size of the checkbox widget itself depends on the width parameter. The height just ends up creating more space for the text next to it.