У меня есть код ...
var selection:Array = new Array();
var diplayObjCont:* = stage;
// The rectangle that defines the selection in the containers coordinate space.
// Loop throught the containers children.
for(var a:int; a<diplayObjCont.numChildren; a++){
// Get the childs bounds in the containers coordinate space.
var child:DisplayObject = diplayObjCont.getChildAt(a);
selection.push(child);
}
trace(selection);
, который возвращает только
[объект MainTimeline]
Итак, могу ли я получить доступ к слоям на этом MainTimeline, чтобы получить все видеоклипы на этом слое? Поэтому я могу сделать простую операцию "A_1_2.buttonMode = true;" ко всем моим MC (например, в массиве) без записи каждой строки (много MC на слое и много строк).