I have an array of buttons in a public var in _model.btnArray. I want to make a function that i can pass an index number parameter that will add addEventListener to the button at that index and removeEventListener to all other buttons in the array. The function creates a tempArray:Array and assigns _model.btnArray to it. Then it addEventListener to the index passed as a parameter to the function. Then it splices the passed index out of the tempArray and then loops through spliced tempArray to remove all the EventListeners from it. which should be the listeners on all the buttons except for that one spliced. but this isn’t working, its giving me an error and i don’t know why.
should this be working or is it just wrong?
THANKS!!!
function addRemoveEventListener(num:Number){
var tempArray:Array = _model.btnArray;
tempArray[num].addEventListener(MouseEvent.CLICK,onBtn);
tempArray.splice(num,1);
for (var i:int = 0; i < tempArray.length; i++)
{
tempArray*.removeEventListener(MouseEvent.CLICK,onBtn);
}
}