Hello,
I have a flash project that consists of a container swf with a navigation menu that loads other swf files into a container movieclip. One clip that is loaded uses the tween class to daisy-chain together an introduction animation. It works fine the first time it is run, but if the user selects another section and then goes back to the introduction section, the tweens from the last instance of the introduction swf continue to run as well as the new ones. It seems that flash is running two instances of the same tween, even though they exist in the exact same path.
So far, I have tried unloading the each swf before loading a new one, calling removeMovieClip() and on the container clip, and then dynamically making a new container clip each time a new section is selected, and setting all of the tweens in the intro as _global variables, in hopes that they would overwrite the previous tweens. I’ve tried rewinding each tween and deleting them before starting a new instance of the intro animation, to no avail. Does anyone have experience with this problem, or have any ideas?
Thanks in Advance,
Chris