The Miner is a complete set of tools to debug and profile Flash and Air applications. With a heuristical approach of problem detection, a simple and immersive interface, and many unique and innovative profilers.

Features list:

  • Global Stats Profiler
  • Instanciation Profiler
  • Function Profiler
  • Internal Events Profiler
  • Loaders Profiler
  • DisplayList Profiler
  • Overdraw profiler
  • Mouse Listeners profiler
  • Garbage Collector Triggering
  • Instanciation/Garbage “Raw Data Dump”
  • Function Call listing “Raw Data Dump”
  • Interlaced Sampling/Function Call listing “Raw Data Dump”
  • Direct as3-code command for SWC embedding
  • Continuous Profiling
  • Skin support
  • Minimizable
  • MonsterDebugger “Automated Connectivity”

Sample

package 
{
	import com.sociodox.theminer.TheMiner;
	import flash.display.Sprite;
	import flash.events.Event;

	public class Main extends Sprite 
	{

		public function Main():void 
		{
			if (stage) init();
			else this.addEventListener(Event.ADDED_TO_STAGE, init);
		}

		private function init(e:Event = null):void 
		{
			this.removeEventListener(Event.ADDED_TO_STAGE, init);
			this.addChild(new TheMiner());
		}
	}
}
Debug . URL.