Question
Stream.prototype.onStatus problem
Is it not possible to use Stream.prototype.onStatus in
main.asc to add an event handler for all Stream instances? I've
added this code
Stream.prototype.onStatus=function(info)
{
trace("Stream.onStatus(): level="+info.level+" code="+info.code);
}
to main.asc but the method is never invoked even if lots of events has been fired that should have been caught by the onStatus() method.
Stream.prototype.onStatus=function(info)
{
trace("Stream.onStatus(): level="+info.level+" code="+info.code);
}
to main.asc but the method is never invoked even if lots of events has been fired that should have been caught by the onStatus() method.
