Help me plzzzzzzzzzzzzzz

hi,

i know about attachMovie method and i know how to use it… but thing which i need to know is
still not clear…

_root.createEmptyMovieClip(“imageHolder1”, 2);
_root[“imageHolder1”]._x=405;
_root[“imageHolder1”]._y=55;
_root[“imageHolder1”]._xscale = 30.5;
_root[“imageHolder1”]._yscale = 30;
loadMovie(“sik2.jpg”,“imageHolder1”);

imageHolder1.attachMovie(“sikbutton”, “sik1”, 1);
sik1._x = 9;
sik1._y = 55;
sik1._xscale = 30.5;
sik1._yscale = 30;
sik1._alpha = 100;

sik1.onRelease=function()
{
unloadMovie(“imageHolder1”);
}

now in the above code there is some problem,please help me if get it.

With the reference of _root i have created an empty MC and on that MC i have loaded a picture,

now on the newly created movieclip i have to place buttons, although i could do that with the

_root reference but i want my buttons to be attached with my new movie clip, now tell wht should

i do in order to do that… cuz with

imageHolder1.attachMovie(“sikbutton”, “sik1”, 2);

i cant see my button, now plz tell me how to do tht…