Hello-
Can someone help me? I think I’m having XML cacheing issues or something isnt clearing correctly. I’ve tried to clearly and sequentially lay out out the logic as follows:
myMenu on frame 1 has two buttons.
for menuButton1: on release, gotoAndPlay frame 2
for menuButton2: on release, gotoAndPlay frame 3
for frame 2: I have a blank container called myContainer1. It loads SWF1
for frame 3: I have a blank container called myContainer2. It loads SWF2
inside SWF1: actionscript loads pages1.xml to populate a pageflip book.
inside SWF2: actionscript loads pages2.xml to populate another pageflip book.
inside SWF1: there is a “return” button that unloads myContainer1, removes the mouselistener, and tells the _root to go back to frame1 on release.
inside SWF2: there is a “return” button that unloads myContainer2, removes the mouselistener, and tells the _root to go back to frame1 on release.
In theory, its all pretty straightforward: A menu has buttons that tell empty containers to load swfs with flipbooks in them. Each SWF calls a separate XML file that tells that flipbook to load specific pages/images that pertain to that flipbook. When the return button is clicked inside the SWF (that holds the pageflip book), the user goes back to the main menu.
Here’s the problem:
All this works with the exception of loading different page content for each SWF (that holds a pageflip book). If I click and go to the first flipbook, then return to the menu and click to go to the second flipbook, the second flipbook doesnt load its own content, but rather retains the images from the previous flipbook. And vice versa.
I’m identifying this as an XML problem. Is it?
Is there a workaround?
Thanks!