Hmm, how to reference the specific string array then?
So I have a Super "ASDF"
String array "stringasdf1"
String array "stringasdf2"
...
String array "stringasdfN"
Each has 3 strings in it.
I want to loop through the string arrays in "ASDF" (so not through the actual strings, but the arrays 1 to N themselves). However, I don't actually know the names ahead of time and there can be a wide variety of names, so I want some numerical or loop-based (e.g. current array in loop, loopindex, etc) way to access them. however, if I do:
{"ASDF","stringasdf1",1} this works but
{"ASDF",0,1} this doesn't work (or also loopindex instead of 0 doesn't work). How do i go about doing this?
I also tried using "l" but it's also crashing so I must be doing something wrong. I did this:
For Each Super in "ASDF"
S.s({"ASDF","stringasdf1",0}) ####This works
S.s({"l","loopname",0}) ####This crashes.