押したボタンの名前を表示するシステムを作ろうとしています。ボタン名は配列に入れられますが、配列に入力された最後の項目しか認識しませんでした。助けていただければ幸いです。
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.
}