Skip to content

Instantly share code, notes, and snippets.

@bigfish
Created May 8, 2009 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigfish/108982 to your computer and use it in GitHub Desktop.
Save bigfish/108982 to your computer and use it in GitHub Desktop.
<mx:Script>
<![CDATA[
// Import the debugger
import nl.demonsters.debugger.MonsterDebugger;
// Variable to hold the debugger
private var debugger:MonsterDebugger;
private function onInit():void
{
// Init the debugger
debugger = new MonsterDebugger(this);
// Send a simple trace
MonsterDebugger.trace(this, "Hello World!");
}
]]>
</mx:Script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment