Hi list...

I'm putting an external flv on the stage like so: (AS2)

var vid:MovieClip = _root.createEmptyMovieClip("vid", 1);
var videoContainer:MovieClip = vid.attachMovie("videoContainer",
"videoContainer", 1);
// videoContainer MC in the library contains a video object named
videoObj
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
videoContainer.videoObj.attachVideo(ns);
ns.play("myVid.flv");

I'm probably overlooking something dumb, but it's only playing one
frame.  The _root timeline is one frame, and the videoContainer mc is
also only one frame.  But even when I add 1000 frames to each, still the
video only plays the first frame.  Any ideas?

Thanks,
- Michael M.

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

Reply via email to