package {
import flash.text.TextField;
public class Score extends Counter {
public function Score()
{
super();
}
override public function updateDisplay():void
{
super.updateDisplay();
gameScore.text = currentValue:toString();
}
}
}
This is the class where another error is coming up 1078 label must be simple identifier.
okay ill talk U thorough the error above. So first I made a new symbol gave it a class name of Score and typed in a number in a dynamic text field. I gave that a instance name of displayScore. After I placed a instance of Score on the background of he actual game playing screen.I gave that a instance name of gameScore. I have been trying to figure this out for 4 days I will be very grateful to anyone who can solve this mystery.