Skip to main content
sergey_landar
Inspiring
January 28, 2010
Answered

How show fps on .swf screen?

  • January 28, 2010
  • 1 reply
  • 1250 views

I have a simple animation. After compile i have .swf file. How i can show fps on .swf?

This topic has been closed for replies.
Correct answer Ned Murphy

You can get the fps using... stage.frameRate;

How you display it is up to you, though a textfield would probably be the simplest means.

1 reply

Ned Murphy
Ned MurphyCorrect answer
Legend
January 28, 2010

You can get the fps using... stage.frameRate;

How you display it is up to you, though a textfield would probably be the simplest means.

sergey_landar
Inspiring
January 28, 2010

Thank you!!!

my_fps.text=String(stage.frameRate);

Ned Murphy
Legend
January 28, 2010

You're welcome