Archive for the ‘MovieClip’ Tag
Very useful AS3 MovieClip property for loop checking
var i:uint;
for (i = 0; this.hasOwnProperty(“item” + i + “_mc”); i++) {
// sample code
this["item" + i + "_mc"].init();
}
var i:uint;
for (i = 0; this.hasOwnProperty(“item” + i + “_mc”); i++) {
// sample code
this["item" + i + "_mc"].init();
}