Removing a movieclip

ok so im trying to use

stop();
addEventListener(Event.ENTER_FRAME,myFunction);
function myFunction(event:Event) {
MovieClip(parent).removeChild(mem4);
}

but the movieclip mem4 isnt added yet as it gets added on by a different event
so im getting the error access of undefined property

what do i need to do to work around this?