クリックするたびに数値が1ずつ増える。




var count_num:Number = 0;

push_btn.onRelease = function() {
	count_num++; //0から1ずつ増えていく。
	count_txt.text = count_num; 
}