変数をバインドして、変更があれば自動的にラベルを更新したいと思います。ラベルへのバインディングの更新
var disp:String = "00:00:00";
var lb:Label = new Label(); //Add Label to an "ContentGroup" container.
lb.text = totalTime;
addElement(lb);
disp="00:00:01"; //New timing
BindingUtils.bindProperty(totalTime, "text", disp, "text");
どうすればよいですか?
ActionScriptでこれを行う必要がありますか? – JeffryHouser
DispatchEventを使用するとgetChildByNameよりも効率的ですが、それについてはわかりませんか?どのような状況で私はそれを使用すべきですか? –