What’s the proper way of loading an flv movie externally? I was doing a project in class which utilized tweenlite and loading of a couple videos externally in a folder. The swf worked fine and even the html looked fine, but once it was loaded into the schools server, the site didn’t show. The professor is not really fond of actionscript, but she does have a grasp on HTML related issues. She told me it may have been a problem with the video loading file. This is the script I used to load the file in:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.client = {};
var video:Video = new Video();
video.attachNetStream(ns);
video.x = 175;
video.y = 85;
video.width = 640;
video.height = 480;
addChild(video);
ns.play(“video/make_believe.flv”);
Should I use another method? Please provide any suggestions. Thanks.