zenpoy
9th October 2011 20:24 UTC
How to customize an existing MUI2 page (components)
Hi all,
I'm referring to this answer in stackoverflow, it seems to be working fine when I add the control to welcome page but when trying to modify the components page the installer crashes! can anyone help?
Actually what I'm trying to do is to add a text and link to the components page - something like terms. So If you have a different solution I'll be glad to hear it (read it).
Thanks,
J.
Afrow UK
9th October 2011 21:56 UTC
The components page is not a nsDialogs page; it is built in to NSIS. To modify it you must add controls at compile time to the UI resource using Resource Hacker or at run time using the System plug-in (with the help of CreateWindow and if needed, GetClientRect, GetWindowRect etc.) To make the controls do something, you can use the Linker plug-in and ButtonEvent plug-in.
Stu
zenpoy
10th October 2011 09:24 UTC
Hi Stu,
Thanks! It worked :)
EDIT: I also used this solution