Как сделать нулевой заполнитель для счетчика?
Моя мысль была условием "если" с большим
и меньшее будет работать.
if count is more than .00 and less than 10.00, add "0000000" etc.
альтернативный текст http://www.ashcraftband.com/myspace/videodnd/icon_3.jpg
КОД"от одних из лучших умов"
//counts
var timer:Timer = new Timer(10);
var count:int = 0; //start at -1 if you want the first decimal to be 0
var fcount:int = 0;
timer.addEventListener(TimerEvent.TIMER, incrementCounter);
timer.start();
function incrementCounter(event:TimerEvent) {
count++;
var whole_value:int = int(count / 100); //change value
var tenths:int = int(count / 10) % 10;
var hundredths:int = int(count) % 10;
mytext.text = whole_value + " : " + tenths + hundredths;
}
///////////////////////////////////////////////
//counts and accelerates
//CA, NC, LONDON "increments"
var timer:Timer = new Timer(10);
var count:int = 0; //start at -1 if you want the first decimal to be 0
var fcount:int = 0;
timer.addEventListener(TimerEvent.TIMER, incrementCounter);
timer.start();
function incrementCounter(event:TimerEvent) {
count++;
//
fcount=int(count*count/10000);//starts out slow... then speeds up
//
var whole_value:int = int(fcount / 100); //change value
var tenths:int = int(fcount / 10) % 10;
var hundredths:int = int(fcount) % 10;
mytext.text = whole_value + " : " + tenths + hundredths;
}
альтернативный текст http://www.ashcraftband.com/myspace/videodnd/icon-3.jpg
Я делаю нули ... eeeeerrrrrrr ... не анимация, не смейся!
проклинает
var timer:Timer = new Timer(10);
var count:int = 0; //start at -1 if you want the first decimal to be 0
var fcount:int = 0;
timer.addEventListener(TimerEvent.TIMER, incrementCounter);
timer.start();
function incrementCounter(event:TimerEvent) {
count++;
//
fcount=int(count*count/10000);//starts out slow... then speeds up
//
var whole_value:int = int(fcount / 100); //change value
var tenths:int = int(fcount / 10) % 10;
var hundredths:int = int(fcount) % 10;
//////////////
function formatCount(i:int):String {
var fraction:int = i % 100;
var whole:int = i / 100;
return ("0000000" + whole).substr(-7, 7) + "." + (fraction < 10 ? "0" : "") + fraction;
}
function test():void {
for (var i:int = 1; i<100000; i += 3) {
trace(i + " -> " + formatCount(i));
}
}
//////////////
mytext.text = formatCount(whole_value + " : " + tenths + hundredths);
// mytext.text = whole_value + " : " + tenths + hundredths;
}
"спасибо за помощь, ребята"