Moving a nested movieclip from one mc to another

hi!

i’ve got a sticky problem:
i’m working on a zelda-GBA type game, and i need to load the tiles (16x16px graphics) from an external SWF file.

sounds easy, but i want to be able to duplicate or attach them into a given movieclip.

do you see what i mean?

here’s a light reconstruction of my problem:

on frame 1 of root

loadMovie("../worlds/comadose/environment.swf", "droptarget");

on “droptarget” mc:

onClipEvent (data) {
	duplicateMovieClip("terra", "myTerra", 100);
	myTerra._y = 100;
}

but i would like to be able to do something like

duplicateMovieClip("terra", "_root.world.myTerra", 100);

or in the root:

droptarget.terra.duplicateMovieClip("world.myTerra", 100);

IN SHORT: :slight_smile:

how can you pass a nested mc from one mc to another?
preferrably dynamically…

thanks in advance for the feedback!!!