OutFile MultiLang.exe
Name "$MultiLang"
SetCompressor /final /solid lzma
!define XPUI_WANSIS
!define XPUI_WANSIS_SKIN LCD
!define XPUI_WANSIS_HEADERIMAGE
!include "UsefulLib.nsh"
!include "LogicLib.nsh"
!include "XPUI.nsh"
!verbose 4
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
Section "1600" SEC01
SectionEnd
Section "6310" SEC02
SectionEnd
!insertmacro XPUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro XPUI_DESCRIPTION_TEXT ${SEC01} "Description text goes here."
!insertmacro XPUI_DESCRIPTION_TEXT ${SEC02} "222"
!insertmacro XPUI_FUNCTION_DESCRIPTION_END
Function .onMouseOverSection
FindWindow $0 "#32770" "" $HWNDPARENT
GetDlgItem $0 $0 1043
CreateFont $1 "Times New Roman" 12 400
SetCtlColors $0 0x000000 0xd4d0c8
SendMessage $0 ${WM_SETFONT} $1 0
FunctionEnd
if i used !include "MUI.nsh" , the Script has not any trouble.
now i must used "!include "XPUI.nsh" ,but the Script Error.
Please tall me how to do it ?