Frame Rate's Effect on Event.ENTER_FRAME Animations : Animation : TextField Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » TextField » Animation »

 

Frame Rate's Effect on Event.ENTER_FRAME Animations


 
package {
  import flash.display.*;
  import flash.events.*;
  import flash.utils.*;
  import flash.text.*;

  public class Main extends Sprite {
    private var startMsg:TextField = new TextField(  );

    public function Main(  ) {
      var timer:Timer = new Timer(30001);
      timer.addEventListener(TimerEvent.TIMER, timerListener);
      timer.start(  );

      startMsg.autoSize = TextFieldAutoSize.LEFT;
      startMsg.text = "Get Ready!";
      addChild(startMsg);
    }

    private function timerListener (e:TimerEvent):void {
      startMsg.text = "GO!";
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo TextField
» Animation