I’m having some trouble with fully deleting object references. My object (a displayObject) has an ENTER_FRAME eventListener with weakReference set to true. It simply traces “hello” every frame. Then in my document class I try to delete it as follows:
delete(removeChild(obj));
. Despite this, the eventListener keeps on printing “hello”. And I don’t believe I have any other references to the object lying around. But in case that is true, is it possible to print the number of references of the Object? Also if I’m just doing the delete part wrong, please tell me as well.