Why this:
for each (var dieListener:Object in dieListeners)
{
var f:Function = (dieListener as Function);
f();
}
..doesn't work, if this:
for (var i:int=0; i<dieListeners.length; i++)
{
var f:Function = (dieListeners.getItemAt(i) as Function);
f();
}
..works!?
(the first one simply doesn't enter the for loop, but the second do!)