These are just 2 small problems I am having at the moment.
1. I used this code to display score. ScoreVar is the variable that counts the score, and ScoreText is a dynamic text box that displays the score. This isn’t the full code, but I think just this chunk will suffice.
onEnterFrame = function() {
var ScoreVar:Number = 0;
ScoreText = "Score: "+ScoreVar;
}
2. How can I remove each and every duplicated/attached movie clip from the screen?
Thanks!