Archive: license template text removal help


license template text removal help
i have installer ready.
i want to know how can i either remove or modify the text that comes on the default license page template.

the text is:-

"Press Page Down to see the rest of the agreement."

"If you accept the terms of the agreement, click the check box below. You must accept the agreement to install Product. Click Next to continue."


thanks in advance.


i got the solution.
to remove:- "Press Page Down to see the rest of the agreement."

do:-
!define MUI_LICENSEPAGE_TEXT_TOP ""

(for help :- c:\Program Files\NSIS\Contrib\Modern UI 2\Pages\License.nsh)


AND
to remove "If you accept the terms of the agreement, click the check box below. You must accept the agreement to install Product. Click Next to continue."

do:-
!define MUI_INNERTEXT_LICENSE_BOTTOM_CHECKBOX ""

(for help:- C:\Program Files\NSIS\Contrib\Language files\English.nsh ).


If you are using the Modern UI, see the Modern UI help file, then click through "Page Settings", "License Page Settings". All of the standard texts and such can be changed there.


!define MUI_LICENSEPAGE_TEXT_TOP "Text at top (Press Page Down...)"
!define MUI_LICENSEPAGE_TEXT_BOTTOM "Text at bottom (If you accept...)"
!define MUI_LICENSEPAGE_BUTTON "Text on agree button (I agree)"
!define MUI_LICENSEPAGE_CHECKBOX
!define MUI_LICENSEPAGE_CHECKBOX_TEXT "Text beside checkbox (I accept the...)"


Edit: well, nevermind, then :P Though instead of looking through a language header file for help, why not just open the help/docs?
<NSIS>\Docs\Modern UI\
<NSIS>\Docs\Modern UI 2\

thanks. will do it that way from next time.