createEmptyMovieClip inside another

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:




_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! :smiley: