Problems!, please help!

Hi there, well, I’ll try to explain my problem

I’ve a movie clip with buttons, one button, ‘productos’ calls another movieclip called productos.swf inside a movieclip called emptyClip, the AS is:

from the main movie

BotonProductos_mc.onRelease = function(): Void {
unloadMovie(EmptyClip);
loadMovie(“productos.swf”, EmptyClip)
};

then, in productos.swf, I’ve another button, this one calls a movie clip called belleza.swf, this one contains a XML connector and 2 components, one comboBox and one textarea, if I publish the last movie, belleza.swf,all works properly, so, when I call this one from productos.swf the components in belleza do not works, I call belleza from productos with this AS:

unloadMovie("_root.EmptyClip");
loadMovie(“belleza.swf”, _root.EmptyClip);

why I’m using _root?, because I want this last clip loads into my main movie, but nothing is working, any idea??, any help??, please!

Thanks in advance!!!