Hi,
My main SWF adds to the stage an external SWF that has this code:
import fl.video.*;
var myVideo:FLVPlayback = new FLVPlayback();
myVideo.source = "video.flv";
myVideo.skin = "SkinOverPlayStopSeekFullVol.swf";
myVideo.skinBackgroundColor = 0xAEBEFB;
myVideo.skinBackgroundAlpha = 0.5;
addChild(myVideo);
The video plays on the first time without any problem. Then, when I remove the external SWF from the stage, I use the code:
myVideo.stop();
It stops playing the video (without this code, even when I remove the external SWF I can still hear the video sound).
And the problem is when I try to see the video for the second time. When the external SWF is added to stage again, I can only see the skin buffering and the video does not appear. And this happens only when I test online. At my local computer, no problem occurs.
The first question may be: “You can’t see the video because it is loading”. Well, at first time, I watch the video, even if it is not fully loaded (streaming):
And at the second time I get this:
What could be the problem?
Thanks for support!