private function onLoadComplete(event:Event) : void
{
movieClip = new MovieClip();
movieClip.addChild(mcLoader);
addChild(movieClip);
trace(movieClip.totalFrames);
}
The mcLoader is used to load a external .swf file which is a video file I converted from .flv. The video plays well but the trace outputs 1, which means there is only 1 frame in the movieClip, that's not what I want. I thought I can manipulate all the frames in video.