I have a Main Document class that instantiates 2 classes that control loading of two navigation grid swfs. These are populated by xml from navigation buttons on the main stage. A 3x3 navigation grid repopulates it's images and links when the buttons on the main stage are clicked Then loads the chosen video when a node on the grid is clicked. this is another swf containing an FLVPlayback component. The 3x1 grid loads a swf that contains dynamic text fields for news and an image holder MovieClip..
So far the 3x3 grid is functional except for one problem if a video is playing and the main navigation button is clicked a new grid appears over the top. I need the behaviour of the buttons to change if a video is displayed to remove the loaded video swf first. What is the best way to target this? I've tried to control it via code in the parent class, but I'm not able to control the main nav buttons, I've tried accessing a setter in the parent class GridNavMain from the Main document class, but no success..here's the loading structure Main > GridNavMain > GridNav > VideoSWF > FLV. ... and code from GridNavMain...
private function removeSWF(e:MouseEvent):void {
var my_loader:Loader = Loader (e.currentTarget);
my_loader.unloadAndStop();
removeChild(full_mc);
full_mc = null;
my_loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, removeGrid);
var _vidloaded = false;
my_loader=null;
}
I've also tried altering the dispLayGrid function in the Main class to detect wether a video is playing and so unload the video, but no success...
private function displayGrid(e:MouseEvent):void {
var gridTarget = e.target.name;
if (gridTarget == "news" ) {
gridnews_container_mc = new MovieClip();
gridnews_container_mc.x = 20;
gridnews_container_mc.y = 50;
addChild(gridnews_container_mc);
if(newGrid) {
//newGrid.removeSWFOnly();// needs to remove GridNav's loaded video swf first when buttons clicked
}
var newGridNews:MovieClip = new GridNavNews();
// set property of xmlpath based on button target, accesses setter function in GridNavNews.as
newGridNews.setXMLTarget(gridTarget);
addChild(newGridNews);
gridnews_container_mc.addChild(newGridNews);
newGridNews.addEventListener(MouseEvent.CLICK,sendMainScreenOutCommand);// sends a socket command to device
} else {
grid_container_mc = new MovieClip();
grid_container_mc.x = 0;
grid_container_mc.y = 0;
addChild(grid_container_mc);
//newGridNews.removeSWF();// NEEDS TO REMOVE GridNavNews if other buttons clicked
var newGrid:MovieClip = new GridNavMain();
// set property of xmlpath based on button target,accesses setter function in GridNavMain.as//
newGrid.setXMLTarget(gridTarget);
addChild(newGrid);
grid_container_mc.addChild(newGrid);
newGrid.x = 20;
newGrid.y = 50;
newGrid.addEventListener(MouseEvent.CLICK,sendMainScreenOutCommand);
}
the 3x1 news grid loads in a swf with dynamic textfields - The xml is parsed correctly but i can't seem to target the textfields correctly from the parent swf. Should I use a document class for this swf to load the xml, or is there a way to load it from the parent GridnavNews swf?
