Hi Guys,

I'm using the following code to load a variable target into a variable movieclip.

targetClip = "center"
targetSWF = "myimage.jpg"
_root[targetClip].loadMovie(targetSWF);

This works fine but I want to be able to load into childs of
movieClips like this

targetClip = "center.image"
targetSWF = "myimage.jpg"
_root[targetClip].loadMovie(targetSWF);

however that doesn't work!
Any good ideas for a solution?
//poden