I have a problem in that i have a holder swf which loads in other swf’s externally. My problem is that the holder loads all the movies in correctly but the memory usage of the swf just keeps going up and up even though i am trying to remove the movieclip after each has finished it’s run.
function movie_end() {
//remove movie
newmov.removeMovieClip(swfs[n]);
n++;
if (urls[n]==undefined) { n = 0; }
_root.targetUrl = urls[n];
newmov = _root.createEmptyMovieClip('holder', 1);
newmov.loadMovie(swfs[n]);
// attempt to save cookie
so.data.promo = n;
so.data.promoDate = now();
so.flush();
}
any ideas as it’s driving me nuts.