0

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

1 回答 1

2

我不确定问题是什么,我认为这就是您所需要的。

var buttonArray:Array = new Array(container.anotherButton, container.anotherButton2);

即使您移动容器/按钮,引用也将保持不变。

于 2012-04-11T16:37:23.857 回答