Sections with Variable Names
basically I want to use SectionSetFlags but on a section whose variable name is stored inside a variable $0. Here's an idea about it:
StrCpy $0 "blah"
SectionSetFlags ${$0} 1
however, this doesn't seem to work because when I debug and insert MessageBox MB_OK ${$0} it displays "${blah}" where as I need it to show the integer value of ${blah}.
The reason why I am doing it this way is because this is in a loop, and the section name changes constantly.