Hey there. I’ve got a base screen class who have children with event listeners. They all work but some of them frequently (though not always) take more than one click to respond. It makes me think that the first click is getting stage focus.
The only difference between the ones that work all the time and the ones that don’t(as far as I can tell) is that the problematic ones get there listeners added in a for loop as follows:
for ( sAL = 0; sAL < asBaseScreen.blueScalerListenerArray.length; sAL++)
{ asBaseScreen.blueScalerListenerArray[sAL].addEventListener(MouseEvent.CLICK, onSliderArrayClick);
}
Any thoughts on how to make these listeners more attentive?