-
mean mr loop
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.
-
PHP Code:
for (i=1;i<=10;i++)
{
this["box"+i].id = i;
this["box"+i].onRelease = function()
{
trace("this is box "+this.id);
}
trace("box "+i+" has been set");
}
-
once again cancerinform you are of great help, I knew it was going to be a simple thing like that, thanks!