AS3 Flash-Console

console_controls01

Every wonder that, there’s something to display your run-time variables smoothly without using the laggy trace.

Not to say trace command is useless, but at times is much less cpu intensive to debug values especially on enterFrame run time to an on screen textbox instead of using trace.

But, lately I stumbled upon a good console interface like debugger called Flash Console in a form of as3 class package!

Aside from the being able to watch your values real time , it also came with various handy feature such as.

  • Command line
  • Display info/properties checker (known as Roller)
  • RunTime Measurement Ruler

All you need to do is to import the class into your main.as and attach C (the singleton class) method startOnStage.

import com.atticmedia.console.C;
C.startOnStage(this, "");
 
// To debug a value
C.info(variableName);

If you are interested click here to get it .