I’m making a game, and I’m having some trouble with the score function. When one movieclip touches an item I want the score to go up, and the item to disappear. My code seems to work, as the score increases when the item is touched, but I get this error:
2025: The supplied DisplayObject must be a child of the caller.
This error outputs every time my hero touches the sport where the item used to be. Probably, this is because the item is not entirely removed, just invisible. But how do I avoid this error?
I had some similar problems, can’t tell you how I’ve solved them exactly (I was mostly changing order of things, so not sure what helped (: ). But you might wanna try to play with your MovieClips to see if you can get what you want. For example:
Indeed. The problem is that the object you are trying to remove is not a child of the object/class that your script is placed. e.target will reference the object that sent the event, which may or may not be the parent of the object you are trying to remove depending on your structure. If it isn’t you may need to dispatch an event from the hitTest function and add a listener for it on the parent of the object you want to remove.