Hi, what should I do if I want to remove a clip inside a external movieclip. In the external clip, I have a clip called "pic_mc". Inside that, I have a button called"close_btn". When I click it, I want to make pic_mc disappear.

This is the script I wrote inside pic_mc

close_btn.onPress = function(){
_parent.pic_mc.removeMovieClip();
}

When I click on it, nth happens. Does anyone know what going on?