I'm working on a small game in Flash to get the basics of AS3 down. However, I ran into some problem that I can't seem to figure out.
I have my Player 'avatar', which is supposed to pick up small coins that appear from the right side of the screen. These coins move to the left where my player character can pick them up. I want to remove them from the screen and increase the score by 10 when the character picks up a coin.
However, there seems to be a couple of bugs: when I pick up a coin, I get these errors:
TypeError: Error #2007: Parameter child must be non-null
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
I push the coins to an array and then run a foreach loop on them to make them move and call hitTestObject() on them:
for each(var muntje:Muntje in geldArray)
{
muntje.moveMuntje();
if(playerLola.hitTestObject(muntje))
{
removeChild(muntje);
gameScore.addToValue(10);
}
}
Also, when I pick up a coin, the game doesn't entirely crash; it just seems to stop a bit, throw (spam) a couple of those error messages and then it increases the score by 10, after which the game continues.
EDIT: I guess I can't use removeChild() here because 'muntje' isn't actually a child? I tried things like stage.removeChild(muntje), but that just wouldn't work either. How would I go about removing the coins from the stage?
Any help? Thanks in advance.