I want to add two pages with licenses. One is for my program and second is for programs I include inside my installer. Is it possible to do it? I dont want to use MUI. I'm just using normal/simple installer.
I would like to do something like:
; 1
page license
LicenseData "licencja\licencja.txt"
; 2
page license
LicenseData "licencja\licencja_app.txt"
But then my first license is replaced by second. Any help?
Cheers!
Two license pages?
3 posts
Try wrapping them in a PageEx block (http://nsis.sourceforge.net/Docs/Chapter4.html#4.5.6) instead:
; 1
PageEx license
LicenseData "licencja\licencja.txt"
PageExEnd
; 2
PageEx license
LicenseData "licencja\licencja_app.txt"
PageExEnd
wow! that's easy! thank you!