I'm very new to NSIS and I'm trying to figure out how to make an installer that displays 2 license pages that follow each other using Modern UI. I tried something like
but it does not seem to work. 😢 Could someone help me with this issue??
LicenseData "[snip long absolute path]\gpl.txt"
!insertmacro MUI_PAGECOMMAND_WELCOME
!insertmacro MUI_PAGECOMMAND_LICENSE
LicenseData "[snip long absolute path]\warning.txt"
!insertmacro MUI_PAGECOMMAND_LICENSE
!insertmacro MUI_PAGECOMMAND_DIRECTORY
!insertmacro MUI_PAGECOMMAND_STARTMENU
!insertmacro MUI_PAGECOMMAND_INSTFILES
!insertmacro MUI_PAGECOMMAND_FINISH
One more question: Can I somehow display RTF files in the license box? It's not really necessary, but it would be nice to have.
Thanks for the great installer, btw.!!
Greets,
Daniel