Archive: How to remove Spacetexts label from component page?


How to remove Spacetexts label from component page?
Hello Eyeryone,

I am using
1.Welcome page
2.Lic. Page
3.Component Page
4.Directory Page
5.Finish page

in my nsis script, I used the keyword 'spacetexts none' but it is still showing the default space labels on component page.

Please help me to figure out this.

Thanks in advance

Gauri


;add this line before insert the components page macro
!define MUI_PAGE_CUSTOMFUNCTION_SHOW DestroyControl
!insertmacro MUI_PAGE_COMPONENTS


Function DestroyControl
FindWindow $R0 "#32770" "" $HWNDPARENT
GetDlgItem $0 $R0 1023
System::Call 'User32::DestroyWindow(i) i ($0) .s'
FunctionEnd