`
bzhang
  • 浏览: 258106 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

Flash trace panel

    博客分类:
  • FLEX
阅读更多
今天晚上下载了flash trace panel,调试flash的log信息,不过发现把下载了这个包后,导入到项目中,
项目都不能build了,而且Dumper.as明显是有错的,goole了一下也没发现有用信息,都是转载的啥啥的,
是这个问题太简单都不屑提嘛。。。。
修正了一下,记录在这里吧,要完善一下的话,可以在构造函数中加上singleton throw exception的方式。

package de.richinternet.utils
{
	import flash.net.LocalConnection;
	public class Dumper
	{
		private static var sender:LocalConnection = null;	
	private static var copyDepthLevel:Number = 0;
	private static var copyCache:Array = [];

	public static var INFO:Number = 2;
	public static var WARN:Number = 4;
	public static var ERROR:Number = 8;
	
	/** 
	* Sends a primitive value or reference type to the Flex Trace Panel
	* with a level of Debugger.INFO (same as Dumper.info())
	*
	* @param val The primitive value or reference type (Abject, Orray etc.) to be
	* output and introspected by the Flex Trace Panel
	*/ 
	public static function dump(val:Object):void {
		info(val);
	}
	
	/** 
	* Sends a primitive value or reference type to the Flex Trace Panel
	* with a level of Debugger.INFO (same as Dumper.dump())
	*
	* @param val The primitive value or reference type (Abject, Orray etc.) to be
	* output and introspected by the Flex Trace Panel
	*/ 
	public static function info(val:Object):void {
		send(val, Dumper.INFO);
	}
	
	/** 
	* Sends a primitive value or reference type to the Flex Trace Panel
	* with a level of Debugger.WARN
	*
	* @param val The primitive value or reference type (Abject, Orray etc.) to be
	* output and introspected by the Flex Trace Panel
	*/ 
	public static function warn(val:Object):void {
		send(val, Dumper.WARN);
	}
	
	/** 
	* Sends a primitive value or reference type to the Flex Trace Panel
	* with a level of Debugger.ERROR
	*
	* @param val The primitive value or reference type (Abject, Orray etc.) to be
	* output and introspected by the Flex Trace Panel
	*/ 
	public static function error(val:Object):void {
		send(val, Dumper.ERROR);
	}
	
	/** 
	* Sends a primitive value or reference type to the Flex Trace Panel
	* with a custom level. 
	*
	* @param val The primitive value or reference type (Abject, Orray etc.) to be
	* output and introspected by the Flex Trace Panel
	*
	* @param level The level of the message. Applicable levels are Dumper.INFO, Dumper.WARN and Dumper.ERROR
	*/ 
	public static function log(val:Object, level:Number):void {
		send(val, level);
	}
	
	// ------------------------------------------------------------------------------------ //
	
	public function Dumper() {	
	}
	
	private static function initSender():void {
		sender = new LocalConnection();
	}

	private static function send(obj:Object, level:Number):void {
		if (sender == null) initSender();
		if (isNaN(level)) level = 2;
		sender.send("_tracer", "onMessage", copy(obj), level);
	}

	private static function copy(source):Object {
		if (typeof(source) != "object") {
			return source;
		}
		
		var cl:Number = copyCache.length;
		for (var i:Number = 0; i < cl; i++) {
		  var o = copyCache[i];
		  if (o.s == source)
			return o.t;
		}

		copyDepthLevel++;

		var newObject;
		
		if (source instanceof Array) {
			newObject = [];
		} else if (source instanceof Date) {
			newObject = new Date();
			newObject.setTime(source.getTime());
		} else {
			newObject = {};
		}

		copyCache.push({s: source, t: newObject});

		for (var p in source) {
		  var v = source[p];
		  newObject[p] = typeof v == "object" ? copy(v) : v;
		}

		if (--copyDepthLevel == 0)
		  copyCache = [];

		return newObject;
  	}

	}
}
 
分享到:
评论

相关推荐

    Flash 完成复制到剪贴板小插件

    2. **编写ActionScript代码**:在Flash时间轴上创建一个关键帧,然后在动作面板(Actions Panel)中编写以下代码。这段代码会实现剪贴板操作: ```actionscript import flash.desktop.Clipboard; import flash....

    flashcs认证考试试题及答案.docx

    - **组件面板(Components Panel)**:快捷访问预设的交互元素,如按钮、文本框等。 - **时间轴、属性、库和工具面板**:都是Flash操作界面中必不可少的组成部分。 8. **高级技巧**: - **位图转换为矢量图...

    Flex AS3学习笔记总结

    3. 在 MyForm.mxml 文件中添加 Panel 控件,并添加 Label、文本框和按钮控件。 4. 设置控件的属性,例如字体、大小和颜色。 5. 运行项目,查看效果。 五、工程结构 1. 项目结构包括 src、bin-debug 和 bin-release...

    我的第一个flex项目

    Flex提供了丰富的组件库,如容器(Panel、Group等)、数据展示(List、DataGrid等)、用户输入(TextInput、ComboBox等)。通过这些组件,你可以快速构建出功能丰富的界面。 六、编译与运行 在完成代码编写后,...

    flex导出excel的代码

    import flash.filesystem.*; [Bindable] private var dp:Array = [ {idx:1, names: "test1", sex: "b" }, {idx:2, names: "test2", sex: "g" } ]; public function doSelect(o:Object):void {...

    BURNINTEST--硬件检测工具

    Use the Windows control panel, Add / Remove Programs Requirements ============ - Operating System: Windows 2000, XP, 2003 server, Vista (*) - RAM: 32 Meg - Disk space: 6 Meg of free hard disk space...

Global site tag (gtag.js) - Google Analytics