Setting the Frame Rate : stage « Development « Flash / Flex / ActionScript






Setting the Frame Rate

 
package {
  import flash.display.*;
  public class Main extends Sprite {
    public function Main(  ) {
      stage.frameRate = 150;
    }
  }
}

        








Related examples in the same category

1.Traversing Objects in a Display Hierarchy
2.Recursive display list tree traversal
3.Distinguishing Events Targeted at an Object from Events Targeted at That Object's Descendants
4.responds to mouse clicks that occur over any object on the display list, but not over a vacant area of the Stage instance
5.A stretchy layout
6.Simple Scribble
7.Working with the Stage
8.Local Global Sample