Archive: Multiple components option


Multiple components option
Hi,

I am a newbie in NSIS. I need some help regarding the MUI Components page. I am adding 3 section Group and different sections inside the Section Groups. I need to do different actions based on the user selection. Users have the options to select multiple options.
So can anyone please help me with a sample code which is having more than 3 sections and verifying the user selection of those options and based on that displaying different message boxes

Thank you


In .onSelChange (or on page leave) you can use ${If} ${SectionIsSelected} ${SECTION_ID} where SECTION_ID is the last param on Section. Note that the sections must be before your .onSelChange function so that SECTION_ID is defined before you use it.

Stu