I have the following code
when you click on each box, they all say "this is box 10"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"); }
I want them to each say their correct number "this is box 1", "this is box 2"...ect Ive tryed many combos...none work.


Reply With Quote