# Help me plzzzzzzzzzzzzzz

**URL:** https://forum.kirupa.com/t/help-me-plzzzzzzzzzzzzzz/125590
**Category:** Uncategorized
**Created:** [October 15, 2004, 6:48am UTC](https://forum.kirupa.com/t/help-me-plzzzzzzzzzzzzzz/125590 "2004-10-15T06:48:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![alikmincorp](https://avatars.discourse-cdn.com/v4/letter/a/8491ac/32.png) [@alikmincorp](https://forum.kirupa.com/u/alikmincorp)
#### Post date: [October 15, 2004, 6:48am UTC](https://forum.kirupa.com/t/help-me-plzzzzzzzzzzzzzz/125590/1 "2004-10-15T06:48:21Z")

</div>

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…
