I am doing a presentation on which I need to use a lot of video clips. I load all these videos dynamically using Loader. I use a code snippet like this:

var req:URLRequest = new URLRequest("video.swf");
var a:Loader = new Loader();
a.load(req);
stage.addChild(a);

a Now the issue is: When I get to say the 7th one, it starts lagging. I do not know why, but I think it is because everything is loaded to memory. Is there a way I can erase a video from memory after displaying it? Or is there another solution to this?

link|improve this question

79% accept rate
What do you do when each one completes, do you clean up afterwards? – shanethehat Jul 8 '11 at 12:23
You just beat me to it! removeChild is the first step in this problem :) – Chris Burt-Brown Jul 8 '11 at 12:24
feedback

2 Answers

If you just load a new video each time and add it to the stage, you will have a rather big hierarchy of movies sitting on top of each other; all kept on stage and in memory.

If you keep a reference to the previously loaded movie, you can just remove it from the stage when the 'next' movie is loaded. Haven't tested this properly, but just to give you an idea of what the code might look like:

var oldLoader:Loader = null;

var a:Loader = new Loader();
a.contentLoaderInfo.addEventListener(Event.COMPLETE, loader_complete);
a.load(<your url>);

function loader_complete(e:Event):void {
    var newLoader:Loader = e.currentTarget.loader as Loader;

    stage.addChild(newLoader);

    if(oldLoader != null) {
        stage.removeChild(oldLoader);
        oldLoader = null;
    }

   oldLoader = newLoader;
}
link|improve this answer
1  
I think I found the solution. If you use removeChild, it only stops displaying, but the whole thing is still in memory (cache). So the more you load the videos, the more you fill up the cache. What we need is something that completely clears the cache before loading another video. I used unloadAndStop() and it seem to have completely done the trick, unless someone has something against it. Thanks again – Sthe Jul 8 '11 at 12:36
1  
Should absolutely do the trick. there are some special cases where the unloadAndStop won't work properly. But in your case of just loading-displaying-removing it should be all good. – Bakapii Jul 8 '11 at 12:42
feedback
up vote 0 down vote accepted

I think I found the solution. If you use removeChild, it only stops displaying, but the whole thing is still in memory (cache). So the more you load the videos, the more you fill up the cache. What we need is something that completely clears the cache before loading another video.

I used unloadAndStop() and it seem to have completely done the trick, unless someone has something against it.

Thanks again

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.