rjstephens
17th January 2004 01:51 UTC
installer notes - simple NSIS question but something I can't find an answer to
How do I insert some installer notes that are shown before the license agreement? I can't figure it out from the manual. I know this is a simple question but I can't find the answer anywhere.
Yathosho
17th January 2004 02:59 UTC
you can do so using an InstallOptions page, refer to the manual
Joel
17th January 2004 04:53 UTC
Also there some PageEx functions.
rjstephens
19th January 2004 04:51 UTC
In the end i created a second license page (i'm using the modern UI)
If anyone is interested, here is the code I used:
!define MUI_PAGE_HEADER_TEXT "Information"
!define MUI_PAGE_HEADER_SUBTEXT "Please read the following important information before continuing."
!define MUI_LICENSEPAGE_TEXT_TOP "When you are ready to continue with Setup, click Next."
!define MUI_LICENSEPAGE_TEXT_BOTTOM " "
!define MUI_LICENSEPAGE_BUTTON "Next >"
!insertmacro MUI_PAGE_LICENSE "C:\notes.txt"
Comm@nder21
19th January 2004 14:54 UTC
that's shurely the best way to go :)