Well I am pretty new to actionscript3 and currently I am working on this assignment which is a simple squash game. I need to create a score counter, which increments by one every time when the ball hits the racquet. I used a text field for the score counter, and tried to set format to it. Well, it roughly works, but the question is, every time the score increments, the text field would 'blink', just like, it disappears for probably several milliseconds and reappears again, which is pretty annoying. Here is my code:
package
{
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.text.TextFieldType;
public class SquashGame extends MovieClip
{
public var playerone:Player;
public var ballone:Ball;
public var collisionarea:Paddle;
public var ballxspeed:Number = -3;
public var ballyspeed:Number = 8;
public var ballflag:Number = 0;
public var launchpos:Number;
public var dist:Number = 0;
public var fraction:Number = 0;
public var score:int = 0;
public var scoretext:TextField=new TextField();
public var scoreformat:TextFormat=new TextFormat();
public function SquashGame()
{
......
scoretext.x = 30;
scoretext.y = stage.stageHeight - 30;
scoretext.text = "Score: " + score.toString();
scoretext.type = TextFieldType.DYNAMIC;
scoreformat.color = 0xFF0000;
scoreformat.font = "Arial";
scoreformat.size = 20;
scoreformat.bold = true;
scoretext.setTextFormat(scoreformat);
addChild(scoretext);
......
scoretext.addEventListener(Event.ENTER_FRAME, scorecounter);
}
public function scorecounter(event:Event):void
{
scoretext.setTextFormat(scoreformat);
if ((ballflag==1)&&(ballone.hitTestObject(collisionarea)))
{
scoretext.text="Score: "+String(++score);
}
}
I have to reset text format to 'scoretext' in function 'scorecounter', otherwise text format would become default. I guess this results in the 'blink', but I cannot figure out a better way. Anyone knows how to fix this?
scoretext, that may help. Also it's probably a good idea to post all of the code, since a lot of the time a problem can be caused even by seemingly irrelevant code (and I can't find anything wrong here). – puggsoy Jan 27 at 21:54scoretext.setTextFormat(scoreformat);. You've already set the format once in your constructor, you shouldn't need to do it every frame. That perhaps, is the source of your blinking. – Sunil D. Jan 28 at 0:54scoretext.defaultTextFormat = scoreformat. Is there any other code which affectsscoretextor its containers though? I suspect something else is causing the problem. – David Mear Jan 28 at 1:34