Hi all, I've had this issue with a couple of projects now, and thought I'd throw it out there for workaround suggestions.
It would be nice to be able to play back video on a NetStream in multiple Video instances. Pseudocode for the problem looks something like: var nc:NetConnection = new NetConnection( null ); // Connect nc here ... var ns:NetStream = new NetStream( nc ); var stream:String = "streamName"; var video1:Video = new Video(); var video2:Video = new Video(); // Attach Video instances to UIComponents ns.play( stream ); // Video in video1 will play as expected video1.attachNetStream( ns ); // Video in video2 will play now, but video in video1 freezes video2.attachNetStream( ns ); Flash seems to have an issue with feeding one NetStream to multiple endpoints. Calling ns.play( stream ) again does not help. Has anyone seen documentation about this or found a way around the bug? This bug has been submitted to Adobe at https://bugs.adobe.com/jira/browse/FP-920

