I am trying to skip a section if another section has been selected. However, I do not want to uncheck the section's checkbox.
I tried creating a label for the section, and just adding an if statement within the other sections body. For instance,
it compile, but it thoughs a warning saying
Section "Interface" SecCNC_Interface
!insertmacro SectionFlagIsSet ${SecVision_System} ${SF_SELECTED} exit_section continue
continue:
...
...
...
exit_section:
SectionEnd
Section /o "Vision System" Sec2
...
...
...
SectionEnd
unknown variable/constant "{SecVision_System}" detected, ignoring (macro:SectionFlagIsSet:2)Any idea what is happening? how can I implement the functionality I am looking to use?