# Why doesnt MC Loop?

**URL:** https://forum.kirupa.com/t/why-doesnt-mc-loop/305003
**Category:** Uncategorized
**Created:** [February 17, 2010, 9:56pm UTC](https://forum.kirupa.com/t/why-doesnt-mc-loop/305003 "2010-02-17T21:56:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![HBK](https://avatars.discourse-cdn.com/v4/letter/h/48db29/32.png) [@HBK](https://forum.kirupa.com/u/HBK)
#### Post date: [February 17, 2010, 9:56pm UTC](https://forum.kirupa.com/t/why-doesnt-mc-loop/305003/1 "2010-02-17T21:56:59Z")

</div>

I am fairly new to AS3 and have some questions about a project. I am creating a gallery with images alpha tweening from one to the other. I have the animation working but the mc will not loop.

1. The images are loaded dynamically via the below code.
2. The main stage uses stop(); and all mc’s except the gallery mc will loop as expected.

//simplified code with single image loaded  
var urlRequest2:URLRequest = new URLRequest(“fp.jpg”);  
var loader:Loader = new Loader();  
loader.load(urlRequest2);  
fp1s\_mc.addChild(loader);

fadeInTween = new Tween( loader, “alpha”, Regular.easeInOut, 1, 0, fadeInDur, true );

Why wont my mc loop when I use a dynamically loaded image ? If I dont use actionscript and alpha tween images from the library the mc loops.
