How to delete dynamically created mc

If I create a mc within a “xml function” like this:

[AS]
item_mc = _root.container_mc.attachMovie(“content_mc”, “content_mc”, 0);
[/AS]

How can I then delete it?
this doesn’t work

[AS]
delete _root.container_mc.content_mc;
// or
delete _root.container_mc._level0.content_mc;
[/AS]

Anyone knows? Levels is tricky!!! :frowning: