Packagecom.cmiscm.utils.debug
Classpublic class DebugStage
InheritanceDebugStage Inheritance Object

Debug.

Press Both 'c', 'm' Key Show Debug Consol

"c"와 "m"키를 동시에 누르면 디버그창 출력

View the examples

See also

DebugSystem
DebugInfo


Public Methods
 MethodDefined By
  
DebugStage($context:InteractiveObject, date:String)
DebugStage
Constructor Detail
DebugStage()Constructor
public function DebugStage($context:InteractiveObject, date:String)



Parameters
$context:InteractiveObject
 
date:String
Examples
     package {
        import com.cmiscm.utils.debug.DebugStage;
        import flash.events.Event;
     
        public class TestDebug extends Sprite
        {
            private var _delayCall:DelayCall;
            
            public function TestDebug()
            {
                super();
                this.addEventListener(Event.ADDED_TO_STAGE, onAdd);
            }
     
            private function onAdd(evt:Event):void
            {
                evt.currentTarget.removeEventListener(evt.type, arguments.callee);
                
                new DebugStage(this, "2009.11.12");
            }
        }
     }