2nd License Page
On a second license page is there any way you can change the title and subtitle of that page?
You know instead of having License Agreement and Please review the license terms before installing blah!
I can change the MUI_LICENSEPAGE_TEXT_TOP and MUI_LICENSEPAGE_TEXT by putting these lines under the first
!insertmacro MUI_PAGE_LICENSE "License.rtf"
as so
!insertmacro MUI_PAGE_LICENSE "License.txt"
!define MUI_LICENSEPAGE_TEXT_TOP "Bob"
!define MUI_LICENSEPAGE_TEXT "Harry"
!insertmacro MUI_PAGE_LICENSE "readme.rtf"
I even tried putting
!insertmacro MUI_PAGE_LICENSE "License.txt"
!define MUI_LICENSEPAGE_TEXT_TOP "Bob"
!define MUI_LICENSEPAGE_TEXT "Harry"
!define MUI_LICENSEPAGE_TEXT_TITLE "readme"
!define MUI_LICENSEPAGE_TEXT_SUBTITLE "read this."
!insertmacro MUI_PAGE_LICENSE "readme.rtf"
but that didn't make a blind bit of differance, it didn't do anything
I can change everything else except those!
Any help would be gratefull :)
Thank you
-Tony