Archive: customising the top text on custom pages


customising the top text on custom pages
I have a couple of custom install option pages in my installer. I would like to customize the "top text" but I'm not sure how.
I've found example of customising the text on built-in pages, like the following:

; APP Installation directory Page
!define MUI_DIRECTORYPAGE_VARIABLE ${APP_INST_DIR}
!define MUI_PAGE_HEADER_TEXT "APP Installation folder location."
!define MUI_PAGE_HEADER_SUBTEXT ""
!define MUI_DIRECTORYPAGE_TEXT_TOP "Please select the folder where APP has
been installed. If you are unsure where APP! has been installed, please keep
the default value."

However, this doesn't really suggest a way to customise the text outside the custom panel on my custom page..

cheers
alex


not sure if i understood your post, you're probably looking for the caption command


Hi Yathosho
thanks for writing back.
Just this very minute I've found out how to do what I'm looking for: in my function for showing the custom page, I just need a line like the following:

!insertmacro MUI_HEADER_TEXT "title text here" "subtitle"

this works fine.

alex