0

我真的需要关于在 Flash 中使用动态文本的帮助(解释)。我在游戏中尝试在 HUD 上显示当前分数时卡住了。我还是 Flash 的新手,所以任何帮助都将不胜感激。

4

1 回答 1

0

Here is an example of current score displayed by the text field currentScore when someone clicks on the stage:

var p:int = 0; // score points

function clickHandler(e:MouseEvent):void {
    p++;
    currentScore.text = String(p);
}
stage.addEventListener(MouseEvent.MOUSE_DOWN, clickHandler);
于 2014-11-02T15:35:48.910 回答