DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Display FPS In Flash Movie
_root.createEmptyMovieClip("movFrameRate",100);
_root.movFrameRate.onEnterFrame = function() {
this.t = getTimer();
this.frameRate = Math.round(1000 / (this.t - this.o));
//trace(this.frameRate);
this.o = this.t;
}




