我有一个动画片段中的两个按钮,我如何像我使用下面的2个按钮一样引用它们,以便将它们添加到数组中?
container.anotherButton和container.anotherButton2是我想要添加到数组的按钮。
var agreeButton:SimpleButton;
var disagreeButton:SimpleButton;
var buttonArray:Array = new Array(agreeButton, disagreeButton);
for (var i:int = 0; i < buttonArray.length; i++) {
buttonArray[i].addEventListener(MouseEvent.CLICK, mouseClick);
}
答案 0 :(得分:2)
我不确定问题是什么,我认为这就是你所需要的。
var buttonArray:Array = new Array(container.anotherButton, container.anotherButton2);
即使您移动容器/按钮,参考也会保持。