Preloader

Hello Everyone! Back with another problem
I used this to load a .swf file into my movie:
but.onPress = function () {
_root.createEmptyMovieClip(“container”,1);
loadMovie(“loaded.swf”, “container”);
container._x =150;
container._y = 20;
}
But the thing is the swf is a movie file converted from flix to swf format. So I need to make a preloader. How can I do this with creating empty movie clips? Do I have to make different scenes? Thanks,
Marc:hair:

If I understand what you want here’s a tutorial on it

Preloading Multiple Loaded Movies

I went to the tutorial and looked at it. Thanks again for the suggestion. I am going to try it out right now. But in usual fashion I will mostlikely mess the code up so i might as well ask you now. Does this also work with movies loaded at different times? For example I want to load one movie and then after clicking a button it loads another movie in a created empty movie clip. Thanks again.
Marc:hair: