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 that I need a system that can delete the bubble(s) corresponding to the answer. I'm using an Actions-Frame code and a mathBubble AS class. I will show the frame code first.
stop();
var cooldown:int = 200;
var cooldownMax:int = 200;
inputAnswer.restrict = "^A-Za-z";
addEventListener(Event.ENTER_FRAME, bubbleSpawn);
function bubbleSpawn(e:Event) {
if (cooldown>cooldownMax) {
var bubble = new mathBubble();
addChild(bubble);
bubble.x = Math.round(Math.random()*480);
bubble.y = 0;
cooldown = 0;
}
cooldown += 1;
}
package {
import flash.display.MovieClip;
import flash.events.Event;
import flash.text.*;
public class mathBubble extends MovieClip {
var firstInteger:int;
var equationSymbol:int;
var secondInteger:int;
var mathAnswer:int;
var firstSpace:String;
var secondSpace:String;
var mathAnswerString:String;
function mathBubble() {
firstInteger = Math.round(Math.random()*9);
equationSymbol = Math.round(Math.random()*2)+1;
secondInteger = Math.round(Math.random()*9);
trace("bubble spawned");
firstSpace = String(firstInteger);
secondSpace = String(secondInteger);
firstNumber.text = firstSpace;
secondNumber.text = secondSpace;
if (equationSymbol==1) {
mathSymbol.text = "+";
mathAnswer = firstInteger+secondInteger;
mathAnswerString = String(mathAnswer);
trace(mathAnswerString);
}
if (equationSymbol==2) {
mathSymbol.text = "-";
mathAnswer = firstInteger-secondInteger;
mathAnswerString = String(mathAnswer);
trace(mathAnswerString);
}
if (equationSymbol==3) {
mathSymbol.text = "x";
mathAnswer = firstInteger*secondInteger;
mathAnswerString = String(mathAnswer);
trace(mathAnswerString);
}
addEventListener(Event.ENTER_FRAME, bubbleFall);
function bubbleFall(e:Event) {
y += 1;
}
}
}
}
Reading the code is not completely necessary, I was just wondering if anybody could explain how I could use arrays to remove every child with the same answer as the randomized answer each child contains through variables "mathAnswer" and "mathAnswerString" I figured arrays would be how this would work, but if there's any other way then please say so. Thank you for reading this far.