Hello,
I have multiple MCs which im creating and storing them into arrays for access. Whilst I create these MCs, I am also putting bitmaps inside them. When I access my MCs later, I wish to access these bitmaps too - but I cant seem to write the syntax to reference them.
//within my loop
mcs* = this['mc'+i];
this['mc'+i].addChild(this['box'+i]);
// thus later on..in another loop
mcs*.['box'+i].alpha = 0; // does not work
------------------------------------------//
// i tried
mcs*.this['box'+i]...
// and tried putting the bitmaps into an array too for reference:
mcs*bmps*.alpha = 0; // alas no success
any ideas … thank you