Is there a way in Construct to reference a variable's value dynamically?
For example, if I create 3 global variables "box1", "box2", and "box3", with each having a different numeric value, is there a way to grab the value of "box2" by dynamically building the variable name, something like:
n = 2
x = value("box" & n)
This is sort of similar to eval() in Javascript, but I'm not sure if something like the ExecJS expression can be used to somehow interact with Construct globals.