我在舞台上有六个动画片段,我想构建一个for循环,它将改变动画片段内的文字。我有一个数组,其中包含我想要添加到每个剪辑中的所有名称。
var a_letters:Array = new Array('a','b','c','d','e','f');
for(var i = 0; i <= 6; i++ ){
var tempBTN = 'btn'+i+'_mc';
this.getChildByName(tempBTN).letter_txt.html = a_letters[i-1];
}
当我运行此操作时,我收到此错误
场景1,图层&#39;动作&#39;,第1帧,第28行 1119:通过带有静态类型flash.display:DisplayObject的引用访问可能未定义的属性letter_txt。