I’m getting really confused and trying to save myself alot of code, haven’t been able to google a solution.
On the timeline I need a set of variables for each number of TotalNumber
as an example ill use the variable w
for (il = totalNumber; il > 0; il–){
var [w +il]:int = 100;
}
trace(w +1);
doesn’t work. At the end i need about 5 sets of 7 different variables, but be able to change the number of sets, thats why this is pretty critical
Thanks if you can help!