swnova22
04-25-2008, 08:29 PM
I have my flv redirecting to an html page with the following as that i found in another thread:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
vidPlayer.attachVideo(ns);
ns.play("MasonJourney.flv");
ns.onStatus = function (infoObject:Object) {
if (infoObject.code == "NetStream.Play.Stop") {
getURL('http://www.ilmason.org/faq.html');
}
};
stop();
This is all working, but the audio is echoing. I took the actual object off the page, and the audio still plays, but it doesn't show the video. I know that it has something to do with this portion of the code:
ns.play("MasonJourney.flv");
But when I take that out and leave the video on, then the page doesn't redirect. Any ideas on how I can fix the echo? Here is a link to the page:
http://www.askamason.us/flash/transitionvid.html
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
vidPlayer.attachVideo(ns);
ns.play("MasonJourney.flv");
ns.onStatus = function (infoObject:Object) {
if (infoObject.code == "NetStream.Play.Stop") {
getURL('http://www.ilmason.org/faq.html');
}
};
stop();
This is all working, but the audio is echoing. I took the actual object off the page, and the audio still plays, but it doesn't show the video. I know that it has something to do with this portion of the code:
ns.play("MasonJourney.flv");
But when I take that out and leave the video on, then the page doesn't redirect. Any ideas on how I can fix the echo? Here is a link to the page:
http://www.askamason.us/flash/transitionvid.html