How do you call the mc in the group of mc you just addchild?
var mcTxt:CText = new CText();
stage.addChild(mcTxt);
mcTxt.x = 640;
mcTxt.y = 40;
mcTxt.txtScore.text = 'Score: ' + score;
mcTxt.txtCombo.text = 'Combo: ' + combo;
mcTxt.txtScoreString.text = scoreString;
-----------------------------Explanation---------------
mcTxt got 3 mc-texts inside named txtScore,txtCombo and txtScoreString. The mcTxt shows on screnn perfectly.
Butthey don't show the scores up. I think because I code it wrong. How is the right way to call the mc inside the mc?
