I have a page that has a tabular style: several "tab pages" occupy the same space, and you click on the tabs at the top to switch between the pages.
When the tab link is clicked, all other tab pages are hidden via css (display:none) and the selected tag page is shown (display:block).
Each of these tab pages have a FusionChart in them that uses a dataUrl.
Now, when a tab page is shown, the FusionChart seems to start over, and re-gets the XML from dataUrl. That is not desired. I want it so that the FusionChart only goes to the dataUrl once, when the page is loaded, and not every time it is hidden and then shown.
Is there a flashVar that will change this behavior? Or will I have to have all the tab pages shown simultaneously and use z-indices to control visibility?