Doing all this locally.
I have the code to load and play my .flv . What i need to have it do is play the entire .flv then load a .swf to replace the current one.
The code i am working from.
stage.displayState = StageDisplayState.FULL_SCREEN;
var connection:NetConnection = new NetConnection();
var stream:NetStream;
var video:Video = new Video(1280,960);
var metaObj:Object = new Object();
function onMetaData(data:Object):void
{
}
connection.connect(null);
stream = new NetStream(connection);
stream.client = metaObj;
metaObj.onMetaData = onMetaData;
video.attachNetStream(stream);
addChild(video);
stream.play("intro.flv");
video.x = 0;
video.y = 0;