码迷,mamicode.com
首页 > 其他好文 > 详细

AS3实用技巧

时间:2014-11-17 15:28:33      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   文件   on   art   cti   ad   

1、载入类Loader

var loader1:Loader=new Loader();
var url1:URLRequest=new URLRequest("src/文件名");

loader1.load(url1);

loader1.x=200;
loader1.y=0;
addChild(loader1);

loader1.unload();

2、按钮单击事件

anNiu1.addEventListener(MouseEvent.CLICK,anNiu1_Hd);
function anNiu1_Hd(e:MouseEvent):void

3、计时器Timer

var timer1:Timer=new Timer(0.0001);//每××毫秒执行一次
timer1.addEventListener(TimerEvent.TIMER,timer1_Hd);

function timer1_Hd(e:TimerEvent):void

timer1.start;

timer1.stop;

4、循环间隔

var jianGe1=setInterval(hanShu1,10);//每10毫秒执行一次

function hanShu1():void

clearInterval(jianGe1);

AS3实用技巧

标签:style   io   ar   sp   文件   on   art   cti   ad   

原文地址:http://www.cnblogs.com/noengi/p/4103544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!