I have the following code
Code:
for (i=1;i<=10;i++) {
	help += 1;
		["box"+i]onRelease = function() {
	help = help;
			trace("this is box "+help);
		}
		trace("box "+i+" has been set");
	}
when you click on each box, they all say "this is box 10"

I want them to each say their correct number "this is box 1", "this is box 2"...ect Ive tryed many combos...none work.