(Good debugging flash plug-in
How to use it, select a MovieClip in flash and execute it in the consoletrace(this); Output the information of the currently selected objecttrace("hello"); print hellothis.xxx(); When using the xxx method of the currently selected object
import a.b.C;new C(); Create object
Get the class name of the currently selected objecttrace(this.constructor)
Traverse child nodesvar num=this.numChildren;for(var i=0;i<num;i++){ trace(this.getChildAt(i));}
You can use sothink to find the function first, then select the object and execute the method of the object. This is also very good for automatic game scripts.)