用动画AS3改进计数器

时间:2010-02-12 19:11:47

标签: flash actionscript-3

凭借我现在所拥有的,“动态文本”计数,如何通过动画改进它?我想要“滚动”和里程表,还想像LED那样“滴答作响”。

我遇到问题的部分
一个。有不同图像的反推阵列“半懂这个”
湾需要动画作为对象我可以更改“LED自动收报机,里程表滚动器”
C。实施“我很困惑”
alt text http://www.ashcraftband.com/myspace/videodnd/examp.jpg

//counter
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/1000);//starts out slow... then speeds up 
  mytext.text = formatCount(fcount);
}

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 : fraction); 
} 

“感谢您的帮助”

alt text http://www.ashcraftband.com/myspace/videodnd/board2.jpg

1 个答案:

答案 0 :(得分:0)

这就是你想要的吗?

http://shaneberry.net/numbers/