Forum Moderators: open
I have a flv file hosted in my web server and I want to connect it to my timeline.
When I test the video localy it's working, but when I upload html, swf and flv file to the server it's not working.
I also changed the source of the video in the Component Inspector.
Please, can anyone help me to resolve this problem?
Thanks for your help
Thanks for your replay rocknbil. I resolved the problem otherwise by loading the movie using a little piece of code (ActionScript 3.0). Here is the code, in case someone need it:
------------------------------------------------------------
var videoConnection:NetConnection = new NetConnection();
videoConnection.connect(null);
var videoStream:NetStream = new NetStream(videoConnection);
videoStream.play("surfing.flv");
var video:Video = new Video();
video.attachNetStream(videoStream);
addChild(video);
------------------------------------------------------------
Thanks for your help!