description texts
This is my first real work with NSIS. I'm trying to get the description text on the component installation page to appear. I've tried the sample code listed, but when I hover over the components, I don't get any text. Here's what I've put in:
LangString DESC_Section1 ${LANG_ENGLISH} "Installs CHOICE.COM, required for the batch program."The sections are named SEC01, 02, and 03. However, I'm not getting any hover-over description text. What am I doing wrong?
LangString DESC_Section2 ${LANG_ENGLISH} "Installs the Auto Connect batch file and places a shortcut in the startup folder."
LangString DESC_Section3 ${LANG_ENGLISH} "Installs the registry hacks to enable or disable automatic logon."
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT SEC01 $(DESC_Section1)
!insertmacro MUI_DESCRIPTION_TEXT SEC02 $(DESC_Section2)
!insertmacro MUI_DESCRIPTION_TEXT SEC03 $(DESC_Section3)
!insertmacro MUI_FUNCTION_DESCRIPTION_END