使用Actionscript 3的OnInterframe事件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Actionscript 3的OnInterframe事件相关的知识,希望对你有一定的参考价值。

Got this out of the o'reilly ActionScript 3.0 Cookbook
  1. package {
  2. import flash.display.Sprite;
  3. import flash.events.Event;
  4.  
  5. public class ExampleApplication extends Sprite{
  6.  
  7. public function ExampleApplication(){
  8. graphics.lineStyle(1,0,1);
  9. addEventListener(Event.ENTER_FRAME, onEnterFrame);
  10. }
  11. private function onEnterFrame(event:Event):void{
  12. graphics.lineTo(Math.random() * 400, Math.random() * 400);
  13. }
  14. }
  15. }

以上是关于使用Actionscript 3的OnInterframe事件的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 clickTag使用ActionScript 3

ActionScript 3 全屏使用ActionScript 3

ActionScript 3 使用ActionScript 3异步读取文件

ActionScript 3 将FlashVars与ActionScript 3.0一起使用

ActionScript 3 使用Flash / Actionscript 3进行3D翻转效果

ActionScript 3 使用Actionscript 3 / Flash进行流体/果冻(ish)模拟