i have a netstream object that is streaming video from FMS and
throwing an odd error. I have the following 2 lines:
_netStream = new NetStream(_netConnection);
_netStream.play(_streamName, -2, -1, true);
it kicks out the following error:
Error #2044: Unhandled AsyncErrorEvent:.
text=Error #2095: flash.net.NetStream was unable to invoke callback
@setDataFrame. error=ReferenceError: Error #1069: Property
@setDataFrame not found on VideoEditor and there is no default value.
it is happening on _netStream.play() and in response to this error i
added the following setter in VideoEditor:
public function set setDataFrame(info:*):void{}
but still get the same error. was getting 2 other errors of the same
sort asking for @onMetaData and @onPlayStatus which were resolved by
adding 2 setters for those.
what else is the netstream expecting if not a setter for setDataFrame?
any thoughts?