How to know Frame Rate of the stage using cs4 action script
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);
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);