0
我想創建一個系統,顯示您按下的按鈕的名稱。 按鈕名稱被放入數組中,但它只識別輸入到數組中的最後一項。 幫助將不勝感激。AS3「爲每個」陣列問題
var items:Array = [a, b, c]; //The name of each button
for each(var index in items)
{
index.addEventListener(MouseEvent.CLICK, mouseClickHandler);
}
function mouseClickHandler(event:MouseEvent):void
{
trace(index.name); //Should display the name of any of the buttons clicked.
}