Event listener function from an array

Hello, I want to add a function from an array to my addeventlistener … so I can add different functions within a loop…


var ary:Array = new Array(one,two);
button.addEventListener(MouseEvent.CLICK, ary*);

ps … yes i left out the for loop code :: for simplicity sakes

any ideas whether this is possible?