使用Actionscript 3的OnInterframe事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Actionscript 3的OnInterframe事件相关的知识,希望对你有一定的参考价值。
Got this out of the o'reilly ActionScript 3.0 Cookbook
package { import flash.display.Sprite; import flash.events.Event; public class ExampleApplication extends Sprite{ public function ExampleApplication(){ graphics.lineStyle(1,0,1); addEventListener(Event.ENTER_FRAME, onEnterFrame); } private function onEnterFrame(event:Event):void{ graphics.lineTo(Math.random() * 400, Math.random() * 400); } } }
以上是关于使用Actionscript 3的OnInterframe事件的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 clickTag使用ActionScript 3
ActionScript 3 全屏使用ActionScript 3
ActionScript 3 使用ActionScript 3异步读取文件
ActionScript 3 将FlashVars与ActionScript 3.0一起使用