Skip to content
⌘ NSIS Forum Archive

Small Desc Text for Uninstaller

3 posts

RossW#

Small Desc Text for Uninstaller

This works fine for the components page of the installer, but on the uninstaller no desc text appears when I hover over my component:

; Put componenet description section below list box
!define MUI_COMPONENTSPAGE_SMALLDESC

; This is near the bottom of the script, after both the install & uninstall sections
;Assign language strings to sections
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SecFTracker} $(DESC_SecFTracker)
!insertmacro MUI_DESCRIPTION_TEXT ${SecCTracker} $(DESC_SecCTracker)
!insertmacro MUI_DESCRIPTION_TEXT ${SecMSOutlookComAddIn} $(DESC_SecMSOutlookComAddIn)
!insertmacro MUI_FUNCTION_DESCRIPTION_END
kichik#
For the uninstaller, use the MUI_UNFUNCTION_DESCRIPTION_BEGIN and MUI_UNFUNCTION_DESCRIPTION_END macros.
RossW#
Thanks tons kichik! I couldn't find those macros in the MUI readme, but I guess you have to know what you're looking for in this case.