Flash counter
Flash counter
Out of context: Reply #4
- Started
- Last post
- 21 Responses
- unfittoprint0
counter= function(limit, speed){
countLoop= setInterval( this, "increaser", 1000/speed, limit)
}increaser = function(limit){
if (i<= limit){
++i
textBox.text = i + "$00"
}
}//_________________start
counter (9000000, 50);