Tagged Questions

2
votes
1answer
58 views

[AS3]Using arrays to delete a specific child

I am creating a game in which bubbles with simple math equations are falling from the top of the screen, and you have to enter in the answer to make the specific bubble disappear. The only problem is ...
0
votes
2answers
42 views

Dynamically removing movieclips

First time poster, long time reader. I've been having a problem with figuring this out. I've been stuck in my game for 4 hours now, googling and trying to figure out how to do it. I have a game where ...
0
votes
1answer
268 views

Removing multiple object from array

I place the MC in an array and would like to remove it later on from an index maybe till the end. //Removeing MC from stage, from an index till the end LISTmc.removeChild(listArray[clickedIndex+1]); ...