onStatus returns wrong codes??
I'm using the following code to record a stream on the server side,,,,,,the problem is onStatus only reports NetStatus.data.start and no other codes i don't even know what the code it does returns means as it is undocumented .....how can i make onStatus report properly?
Client.prototype.RecStream = function(adName,insID){
this.recordStream = Stream.get(adName);
this.recordStream.onStatus = function(info) {
trace(info.code);
}
this.recordStream.record("record",30);
application.adminObj[adName].recStat="Recording";
}
