# createEmptyMovieClip inside another

**URL:** https://forum.kirupa.com/t/createemptymovieclip-inside-another/84974
**Category:** Uncategorized
**Created:** [March 31, 2005, 10:41pm UTC](https://forum.kirupa.com/t/createemptymovieclip-inside-another/84974 "2005-03-31T22:41:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ghjr](https://avatars.discourse-cdn.com/v4/letter/g/dec6dc/32.png) [@ghjr](https://forum.kirupa.com/u/ghjr)
#### Post date: [March 31, 2005, 10:41pm UTC](https://forum.kirupa.com/t/createemptymovieclip-inside-another/84974/1 "2005-03-31T22:41:17Z")

</div>

Is this possible to:

1. create an empty movie clip
2. load some swf in that with loadmovie
3. create another empty movieclip inside the first empty movieclip
4. load another swf into the second empty movieclip

Something like this I guess:

```auto

_root.createEmptyMovieClip("teste_mc",1);
_root.teste_mc.loadMovie("intro.swf");

_root.teste_mc.createEmptyMovieClip("teste2_mc",2);
_root.teste_mc.teste2_mc.loadMovie("les_lilas.swf");

```

If its not possible I’ll just re-arrange the struture of the site.

Cheers! 😃
