| GUI. | |
| Variables | |
| m_Instance | |
| Functions | |
| OpenDebugWindow | Loads a new instance of a debug window. |
| TraceObject | Trace an object from chatline. |
| RecurseObject | Use TraceObject(..) |
| TraceHitTest | Checks what object the mouse is currently over and traces it’s full path. |
| RecurseHitTest | Use TraceObject(..) |
static function TraceObject( path: String, depth: Number, type: String )
Trace an object from chatline. Ex.1 /aseval com.Utils.Debug.TraceObject _root 6 movieclip This will show all movieclips and their childs down to a depth of 6. Will show movieclip x,y,w,h,vis,alp. Ex.2 /aseval com.Utils.Debug.TraceObject _global.Game.Quests.m_PlayerTiers 2 Will show 2 layers of the playertiers objects.
| path | Full path to the object. |
| depth | Number of depths to show. |
| type | ”movieclip” or nothing. |
static function RecurseObject( name: String, root: Object, depth: Number, type: String )
Use TraceObject(..) if you can. Recurse an object to show all it’s properties. Internal function, but can be used when debugging code if you don’t have the full path to the object and TraceObject can’t be used.
| path | Full path to the object. |
| depth | Number of depths to show. |
| type | ”movieclip” or nothing. |
static function RecurseHitTest( name: String, root: Object )
Use TraceObject(..) if you can. Recurse an object to show all it’s properties. Internal function, but can be used when debugging code if you don’t have the full path to the object and TraceObject can’t be used.
| name | The name of the object. |
| root | The object |
static public var m_Instance: Number
Loads a new instance of a debug window.
static function OpenDebugWindow()
Trace an object from chatline.
static function TraceObject( path: String, depth: Number, type: String )
Use TraceObject(..)
static function RecurseObject( name: String, root: Object, depth: Number, type: String )
Checks what object the mouse is currently over and traces it’s full path.
static function TraceHitTest()
Use TraceObject(..)
static function RecurseHitTest( name: String, root: Object )