# Transition on all iterations of a loader?

**URL:** https://forum.kirupa.com/t/transition-on-all-iterations-of-a-loader/272136
**Category:** flash
**Created:** [October 2, 2008, 12:00pm UTC](https://forum.kirupa.com/t/transition-on-all-iterations-of-a-loader/272136 "2008-10-02T12:00:41Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Rundevo](https://avatars.discourse-cdn.com/v4/letter/r/f04885/32.png) [@Rundevo](https://forum.kirupa.com/u/Rundevo)
#### Post date: [October 2, 2008, 12:00pm UTC](https://forum.kirupa.com/t/transition-on-all-iterations-of-a-loader/272136/1 "2008-10-02T12:00:41Z")

</div>

Hey guys!

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

```auto
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
