I addEventListener but nothing happens?

So I have this news_module class in the library. Basically a dynamic list of buttons with data coming from the xml.

So I do everything as usual, but the EventListeners on the buttons don’t respond. No compiler errors at all… maybe a garbage collector issue??


for(var i = 0; i< xml_data.novedades.children().length(); i++){
					
	temp_btn = new btn_novedades_class;					
	temp_btn.texto.autoSize = TextFieldAutoSize.LEFT;
	temp_btn.texto.width = novedades.fondo.width - 10;
	temp_btn.x = 8;
					
	if(i > 0){
		temp_btn.y = items_novedades[i-1].y + items_novedades[i-1].height + 5;
	} else {
		temp_btn.y = 35;
	}
	
	items_novedades* = temp_btn;
	items_novedades*.addEventListener(MouseEvent.MOUSE_OVER,encender);
	items_novedades*.addEventListener(MouseEvent.MOUSE_OUT,apagar);	
	items_novedades*.buttonMode = true;
	
	novedades.addChild(items_novedades*);
					
}

TIA

Pier