我已经在Google上搜索过了,但没有找到任何推荐的方法来突出显示带有注释的代码部分。
我在想这样的事情:
###########################################################
# This section is clearly labeled using comments so you can
# instantly identify its purpose within this file.
###########################################################
例如,我在php中经常看到这
我一直在尝试为一个小游戏制作一个分数计数器,在这个小游戏中,用户点击舞台上的按钮,每次用户按下按钮,分数就会递增10,但是我无法在动态文本字段上显示分数。我做错了什么?
var score:uint;
//scoreCounter is the instance name of the dynamic text box
function updateScore():void{
score += 10;
scoreCounter.text = score.toString();
}