wonderflには簡単にフレームレートや使用メモリなどのデバッグ情報を表示できるパッケージがインストールされている。使用方法は簡単で、net.hires.debug.StatsをインポートしてStatsクラスを作成して追加するだけ。
package { import flash.display.Sprite; import net.hires.debug.Stats; public class FlashTest extends Sprite { public function FlashTest() { addChild(new Stats()); } } }
このStatsのソースはこちら。
Google Code Archive - Long-term storage for Google Code Project Hosting.