I want to load and unload EXTERNAL SWF that contains FLV on mouse click. Loading and unloading the swf is NOT the issue. The problem is how do i get the external swf which contains an flv to stop playing and stacking up on each other.
Please please help!
I can load and unload the swf’s as long as I pause the videos before I click on another thumbnail, but if I click on another thumbnail while the external swf is playing it’s flv, the previous flv keeps playing and stack up under the newly loaded swf.
The audio and video keep stacking up! Craziness leading to madness if I don’t figure this out! Please help!
here is the code I have:
//—start code ----//
stop();
// Container
var imageLoader:Loader = new Loader();
// Url Requests
var imageRequest:URLRequest = new URLRequest(“pepsi_vid1.swf”);
var imageRequest_2:URLRequest = new URLRequest(“pepsi_vid2.swf”);
// Intial Page Loaded
imageLoader.load(imageRequest);
addChild(imageLoader);
// Button Functions
function goHome1 (e:MouseEvent):void{
imageLoader.load(imageRequest);
addChild(imageLoader);
}
// Button Functions
function goHome2 (e:MouseEvent):void{
imageLoader.load(imageRequest_2);
addChild(imageLoader);
}
thumb1_btn.addEventListener(MouseEvent.CLICK, goHome1);
thumb2_btn.addEventListener(MouseEvent.CLICK, goHome2);
//----stop code ----//
Thanks!