la verdad es que no te entiendo pero si quieres convertir los nombres array en nombre de objetos seria asi
pero el array tendría que estar asi
Código PHP:
var myArray:Array = new Array ("c101", "c102", "c211", "212", "213", "214", "304", "308", "309", "401", "411")
Código PHP:
function format_input(f:Array) {
for (var a:Number=0; a<f.length;a++) {
var objeto = this[f[a]]
trace ('input ' + f[a]);
objeto.border = true;
objeto.borderColor = 0xEFEFEF;
objeto.background = true;
objeto.backgroundColor = oxCC00DD;
objeto.textColor = 0xCCFFDD;
//f[a].
objeto.setTextFormat(my_fmt);
objeto.text = 'a';
}
}
format_input(myArray)
nose si te sirve XD