How to know Frame Rate of the stage using cs4 action script

Posted by druva | Flash, as3, utils | Thursday 25 December 2008 4:32 am

The below code show how to know the frame rate of the stageusing action script.


var t:TextField = new TextField();
t.text = stage.frameRate.toString();
addChild(t);