我在一个影片剪辑中有两个按钮,我如何像使用下面的 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);
}