The form displays with "Name Setup" as the form caption. I understand how to set the titles of the individual installer pages (Welcome, Finish etc), but how do you set the form caption of the installer interface?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Usually setting Name is enough for the title and all pages.

To customize the default title use Caption or to customize the subtitle on a per page basis use SubCaption, or Caption inside a PageEx block (If you are using the Modern UI, it has defines for most of these)

link|improve this answer
feedback

Try Caption

link|improve this answer
feedback

For pages based on nsDialogs use macro MUI_HEADER_TEXT

Example:

Function nsDialogsPage
  !insertmacro MUI_HEADER_TEXT "${LICENSE_TITLE}" "${LICENSE_SUBTITLE}"
  nsDialogs::Create /NOUNLOAD 1018
  ...
  nsDialogs::Show
FunctionEnd
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.