In my init for a component, I am doing the traditional FLV play:

var my_nc:NetConnection = new NetConnection();
my_nc.connect(null);
var my_ns:NetStream = new NetStream(my_nc);

video_mc.__video.attachVideo(my_ns);
trace(video_mc.__video)
trace(my_ns)
trace(__videoPath)
my_ns.setBufferTime(0);
my_ns.play(__videoPath);

Everything traces out fine, everything is there, however with the play() -
the FLV loads and stops playing on Frame 1. I do have some drop shadow stuff
going on inside the component - I am wondering if that is somehow freezing
the FLV. Has anyone seen anything like this before?

ed
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to