私はちょうどステージ上で、レイヤー上のすべてのムービークリップにタイムラインでアクセスできますか?
を返すコード...
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がレイヤー上にたくさんあります)はいすることができます
コードがflash ideタイムラインにある場合は、私はあなたが 'stage 'あなたのコードで' this 'によって... – OXMO456