积少成多Flash(4) - ActionScript 3.0 实例之Hello World, 时钟, 计时器
2009-11-05 00:00:00 来源:WEB开发网2、时钟
在UI上画3个MovieClip,分别对应时,分,秒针,分别取名为arrowHour,arrowMinute,arrowSecond
Hello.as
// 包
package
{
// 导入相关的类
import flash.display.MovieClip;
import fl.events.ComponentEvent;
import flash.events.TimerEvent;
import flash.utils.Timer;
import flash.text.TextField;
import flash.display.SimpleButton;
import flash.events.MouseEvent;
import flash.events.Event;
import flash.utils.getTimer;
import code.Greeter;
public class Hello extends MovieClip
{
// 构造函数
public function Hello()
{
InitClock();
}
/**//*---- 时钟的 Demo 开始 ----*/
private var timer:Timer;
function InitClock()
{
// 实例化计时器,其参数为 tick 的间隔
timer = new Timer(1000);
// 指定 onTick() 方法来处理 Timer 事件
timer.addEventListener(TimerEvent.TIMER, onTick);
// 启动计时器
timer.start();
}
function onTick(event:TimerEvent):void
{
// 实例化 Date ,返回宿主服务器的当前时间
var now:Date = new Date();
// rotation - 对指定对象做顺时针旋转的角度数
arrowHour.rotation = now.getHours() * 30 + (now.getMinutes() / 2);
arrowMinute.rotation = now.getMinutes() * 6 + (now.getSeconds() / 10);
arrowSecond.rotation = now.getSeconds() * 6;
}
/**//*---- 时钟的 Demo 结束 ----*/
}
}
Tags:积少成多 Flash ActionScript
编辑录入:爽爽 [复制链接] [打 印]- ››flash文件的压缩方法(swf文件压缩瘦身)
- ››Flash鼠绘教程:临摹徐悲鸿的骏马图
- ››Flash实例:AS3制作茶杯震动动画
- ››Flash AS 3.0实例教程:Main类打造发散效果
- ››Flash cs3仿真艺术设计3.6:运用遮罩打造焦点效果...
- ››Flash cs3仿真艺术设计4.1:阴影的基本运用
- ››Flash CS4教程:3d工具实例和骨骼工具
- ››flash加载外部文本文件的3种方法
- ››flash在有限的页面内制作大的地图
- ››Flash教程:AS代码制作计时器方法
- ››Flash AS教程:propertydata问题解决
- ››FlashFXP v4.0.0 Build 1486 RC2 [烈火汉化]
更多精彩
赞助商链接