Skip to content

Instantly share code, notes, and snippets.

@kaochenlong
Created July 22, 2011 08:25
Show Gist options
  • Save kaochenlong/1099086 to your computer and use it in GitHub Desktop.
Save kaochenlong/1099086 to your computer and use it in GitHub Desktop.
AS2常見的迴圈插旗子法
// AS2常見的迴圈插旗子法
for (var i = 0; i < 10; i++)
{
this["mc_" + i].i = i;
this["mc_" + i].onRelease = function(){
trace(this.i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment