Video and flash

I have a bit of a problem:

I have a timeline into which I’m loading movies. Well the truth is that I have one done and can’t load any more in. What’s happening is that flash is loading the movie and sticking a preloader to it while it loads.

The problem comes when I want to do the same with 4 other files in the same timeline- thats is i want all 4 movies to be loading at the same time.

_root.createEmptyMovieClip("holder",1);
holder.loadMovie("movie3.swf");
 holder._x = 25;
 holder._y = 40;
var loadObj = holder;

var initObject = {
	
	_x: holder._x-10,
	_y: holder._y,
	target: loadObj,
	loadExit: null
};

_root.attachMovie("loader","loader",2,initObject);

thats the code for attaching the preloader- i was just copying and pasting it in again and changing the “holder” name and and the movie.swf

If i do this it just stops working :puzzle: