So Im trying to make a Video player with Gallery. I have everything set up where the xml playlist is loading great. When I switch tabs, The media gallery wont load, and when I switch back to the first tab nothing is there any more. Can you guys help me out a bit?
Thanks in advance from a new flash coder
here is my code section for the gallery tabs
pay no attention to the <br> tags. idk why they are popping up
[as]
function removeGallery0():void
{
currentGallery = 0;
addEventListenersForGalleryBtns();
sidebarBox.removeChild(container_mc);
}
function removeGallery1():void
{
currentGallery = 1;
addEventListenersForGalleryBtns();
sidebarBox.removeChild(container_mc);
}
function removeGallery2():void
{
currentGallery = 2;
addEventListenersForGalleryBtns();
sidebarBox.removeChild(container_mc);
}
[/as]