Is it possible to iterate in a loop through !define gflags names? For example, get values of ${Stuff$1}, where $1 is a number in ascending order? This example does not work:
PHP Code:
!define Stuff00 "D939D0765789"
!define Stuff01 "2983C201F3A4"
!define Stuff02 "5DC3"
...
StrCpy $2 ""
${For} $0 0 2
IntFmt $1 "%02d" $0
StrCpy $2 $2${Stuff$1}
${Next}
Comment