Transition on all iterations of a loader?

Hey guys!

Can´t seem to get a transition to work on all my loader instances, it only works on the last one!

for (var i:int=0; i < imagesToLoad; i++)
	{
		startLoader=new Loader();
		startLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, startHandler);
		startLoader.load(new URLRequest(images[_randomArr*].attribute("thumb")));
		
		startLoader.name=images[_randomArr*].attribute("source");

		function startHandler(evtObj:Event):void
		{
			alphaMCTE = new MCTE(startLoader, true, "show", "Alpha", 7, 200, "Back", "easeNone", 30);
		}
		addChild(startLoader);

I´m loading 16 thumbnails and ofcourse I want the transition on all of them, but currently I only get it on the last one!

Any ideas on how to apply the transition on all of them?

Thanks in advance

/rundevo