How to change the Header info (text) in NSIS at run time? -
i using nsis i.e., null soft create windows installer. working fine, need change header info text while installer running.
for example:
in header info getting follows,
installing, please wait while...
but need change info or text please wait...
or text. herewith have attached screenshot , marked in red color. please suggest solution.
!include mui.nsh !insertmacro mui_page_components !define mui_page_header_text "blah blah" !define mui_page_header_subtext "sub blah blah" #!define mui_instfilespage_finishheader_text "blah blah completed" ; need if mui_page_instfiles last page #!define mui_instfilespage_finishheader_subtext "sub blah blah" !insertmacro mui_page_instfiles !insertmacro mui_page_finish !insertmacro mui_language english
edit: , change during install process:
section !insertmacro mui_header_text "hello" "world" sleep 3333 !insertmacro mui_header_text "still" "there?" sleep 3333 sectionend
Comments
Post a Comment