class TraceText { var _font, _size, _color, ___width, ___height, ___depth, _parentMc, traceMc, __get__getThisDepth; function TraceText(font, size, color, __width, __height, depth, parentMc) { _font = font; _size = size; _color = color; ___width = __width; ___height = __height; ___depth = depth; _parentMc = parentMc; var _loc2 = this; traceMc = _loc2._parentMc.createEmptyMovieClip("traceMc", depth); traceMc.createTextField("traceText", 1, 0, 0, __width, __height); traceMc.traceText.selectable = false; } // End of the function function setText(_text) { var _loc2 = new TextFormat(); _loc2.color = _color; _loc2.size = _size; _parentMc.traceMc.traceText.text = _text; _parentMc.traceMc.traceText.setTextFormat(_loc2); } // End of the function function clearText() { _parentMc.traceMc.traceText.text = ""; } // End of the function function get getThisDepth() { return (___depth); } // End of the function } // End of Class