# How do I time the appearance of the duplicated images

**URL:** https://forum.kirupa.com/t/how-do-i-time-the-appearance-of-the-duplicated-images/196732
**Category:** flash
**Created:** [August 10, 2006, 4:34pm UTC](https://forum.kirupa.com/t/how-do-i-time-the-appearance-of-the-duplicated-images/196732 "2006-08-10T16:34:07Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fathed](https://avatars.discourse-cdn.com/v4/letter/f/b5ac83/32.png) [@fathed](https://forum.kirupa.com/u/fathed)
#### Post date: [August 10, 2006, 4:34pm UTC](https://forum.kirupa.com/t/how-do-i-time-the-appearance-of-the-duplicated-images/196732/1 "2006-08-10T16:34:07Z")

</div>

I am trying to get these attached movie clips to attach themselves in a timed sequential order. One after the next. Any help would be great. I looked all over but didn’t find an answer.

Here is the code I am using:

```php

//////////////////////////////////////////////////////////////// place bg image
var bw = 40;
var sw = Stage.width/bw;
for (i=0; i<sw; i++) {
    var bg = attachMovie("bg", "bg"+i, i);
    bg._x = bw*i;
}

```
