removeMovieClip() question

Hi all!

Can someone please tell me what i’m doing wrong. I’m trying to create a new movieclip in “test_mc” and then add another from the library. When I press the button I want to remove all.

var myTest = test_mc.createEmptyMovieClip(“myClip_mc”, this.getNextHighestDepth());

var myContent = myTest.attachMovie(“info_mc”,“newClip_mc”,this.getNextHighestDepth())

test_mc.onRelease = function()
{
removeMovieClip(myTest)
}

Have a great day!