Archive: Component's Page Style


[RESOLVED] Component's Page Style
Hello,

when I install NSIS, I see a component's page like that:

http://perso.wanadoo.fr/dropf/Screenshot2.png

But when I compile my project, i have a component's page like this one:

http://perso.wanadoo.fr/dropf/Screenshot1.png

Both don't have the same tree view and description style. How can I get the same component's page of NSIS' installer? I know I can edit the modern.exe file with ResHack (by changing dialog No.104), but I would like to do it in a "proper" way.

Thx (sorry for my bad English, because I'm French ;))


Check the Modern UI Readme :D

!define MUI_COMPONENTSPAGE_SMALLDESC

before the MUI_LANGUAGE macro's


Thank you, it works!
But I don't understand anything: yesterday I tried this command and it didn't work... maybe I pulled it after the language macro :p

Thank you.


You can find the right order of commands in the Readme :)


also depends for how many sections and subsection you have:


SubSection

Section "Section 1"
;Hello dude
SectionEnd

SubSection

Section "Section 2"
;Hello again
SectionEnd

Section "Section 3"
;Me again
SectionEnd

SubSectionEnd

Section "Section 4"
;I finish
SectionEnd

SubSectionEnd

Sections and sub-sections has nothing to do with this.