CodingTrace JS script

 

Press Ctrl+Enter to quickly submit your post
Quick Reply  
 
 
  
 From:  Mikee  
 To:  ALL
32270.1 
Wrote this the other day if it might be help to anyone.
javascript code:
 
//////////////////////////////////////////////////////
//                                                  //
//    If another part of your script is using       //
//  window.onload, change it to callWhenDomLoaded   //
//     and include the events.js script BEFORE      //
//               the tracer script                  //
//                                                  //
//   trace.enabled = false; // true                 //
//   trace.log("test trace message");               //
//                                                  //
//////////////////////////////////////////////////////
 
 
function delegateDom( that, thatMethod)
    {
       var _params = [];
       if(arguments.length > 2)
       {
         for(var n = 2; n < arguments.length; ++n) {
         	_params.push(arguments[n]);
         }
       }
       _params.unshift(null);
       return function(e) {_params[0]=e;return thatMethod.apply(that, _params);}
}
var console = (console?console:{
		'created': 	false,
		'messages':	new Array(),
		'log':		function(a){
					var message = document.createElement('pre');
					message.style.borderBottom = '1px solid #999';
					message.style.padding = '5px';
					message.style.margin = '0px';
					message.innerHTML = a;
					this.messages.push(message);
					if (this.created){
					  
					  this.updateLogger();
					}
				},
		'clearLogger':	function (){
					for (var i=0; i<this.logcontent.childNodes; i++){
					  this.logcontent.removeChild(this.logcontent.childNodes[i]);
					}
				},
		'updateLogger':	function (){
					
					this.clearLogger();
					
					for (var i=0; i<this.messages.length; i++){
					  this.logcontent.appendChild(this.messages[i]);
					}
					
					this.logcontent.scrollTop = this.logcontent.scrollHeight;
				},
		'create':	function(){
					
					this.mainlogger = document.createElement("div");
					this.titlebar = document.createElement("div");
					this.logcontent = document.createElement("div");
 
					this.mainlogger.id = 'logger';
					this.mainlogger.style.backgroundColor = '#FFFFFF';
					this.mainlogger.style.position = 'absolute';
					this.mainlogger.style.top = (this.dim().height - 205) + 'px';
					this.mainlogger.style.left = '10px';
					this.mainlogger.style.width = '70%';
					this.mainlogger.style.fontFamily = 'Verdana';
					this.mainlogger.style.fontSize = '11px';
					this.mainlogger.style.color = '#000000';
					this.mainlogger.style.border = '1px solid #000';
					
					
					this.logcontent.style.overflow = 'auto';
					this.logcontent.style.height = '170px';
					this.logcontent.style.width = '100%';
 
					this.titlebar.style.backgroundColor = '#444';
					this.titlebar.style.color = '#ffffff';
					this.titlebar.style.fontWeight = 'bold';
					this.titlebar.style.padding = '5px 5px';
					this.titlebar.innerHTML = 'Console';
 
					this.created = true;
 
					this.mainlogger.appendChild(this.titlebar);
					this.mainlogger.appendChild(this.logcontent);
 
					var body = document.getElementsByTagName('body')[0];
					
					body.appendChild(this.mainlogger);
					this.updateLogger();
					this.logcontent.scrollTop = this.logcontent.scrollHeight;
					this.addEvent(this.titlebar, 'mousedown', this.dragStart, this.mainlogger.id);
				},
		'addEvent':	function (obj, eventName, thatMethod){		
					var _params = [this,thatMethod];
					if(arguments.length > 3)
					{
					 for(var n = 3; n < arguments.length; ++n) {
						_params.push(arguments[n]);
					 }
					}
					var dlg = delegateDom.apply(this, _params);
					if (!obj.delegates){obj.delegates = {};}
					obj.delegates[eventName]=dlg;
					
					if (obj.addEventListener){
					  
					      obj.addEventListener(eventName, dlg, true);
					} else if (obj.attachEvent){
					      var r = obj.attachEvent("on"+eventName, dlg);
					}
					
				},
		'browser':	function() {
					if (!this.browserObj){					
 
						this.browserObj = {};
 
						var ua, s, i;
 
						this.browserObj.isIE    = false;
						this.browserObj.isNS    = false;
						this.browserObj.version = null;
						ua = navigator.userAgent;
 
						s = "MSIE";
						if ((i = ua.indexOf(s)) >= 0) {
						  this.browserObj.isIE = true;
						  this.browserObj.version = parseFloat(ua.substr(i + s.length));
 
						}
 
						s = "Netscape6/";
						if ((i = ua.indexOf(s)) >= 0) {
						  this.browserObj.isNS = true;
						  this.browserObj.version = parseFloat(ua.substr(i + s.length));
 
						}
 
						// Treat any other "Gecko" browser as NS 6.1.
						s = "Gecko";
						if ((i = ua.indexOf(s)) >= 0) {
						  this.browserObj.isNS = true;
						  this.browserObj.version = 6.1;
						}
					}
					return this.browserObj;
					
				},
		'dragObj':	{
					'zIndex':	0
				},
		'dragStart':	function (event, id) {
				
					var el;
					var x, y;
 
					// If an element id was given, find it. Otherwise use the element being
					// clicked on.
					if (id)
					  this.dragObj.elNode = document.getElementById(id);
					else {
					  if (this.browser().isIE)
					    this.dragObj.elNode = window.event.srcElement;
					  if (this.browser().isNS)
					    this.dragObj.elNode = event.target;
					    // If this is a text node, use its parent element.
 
					  if (this.dragObj.elNode.nodeType == 3)
					    this.dragObj.elNode = this.dragObj.elNode.parentNode;
					}
					
 
					// Get cursor position with respect to the page.
 
					if (this.browser().isIE) {
					  x = window.event.clientX + document.documentElement.scrollLeft
					    + document.body.scrollLeft;
					  y = window.event.clientY + document.documentElement.scrollTop
					    + document.body.scrollTop;
					}
					
					if (this.browser().isNS) {
					  x = event.clientX + window.scrollX;
					  y = event.clientY + window.scrollY;
					}
 
					// Save starting positions of cursor and element.
 
					this.dragObj.cursorStartX = x;
					this.dragObj.cursorStartY = y;
					this.dragObj.elStartLeft  = parseInt(this.dragObj.elNode.style.left, 10);
					this.dragObj.elStartTop   = parseInt(this.dragObj.elNode.style.top,  10);
 
					if (isNaN(this.dragObj.elStartLeft)) this.dragObj.elStartLeft = 0;
					if (isNaN(this.dragObj.elStartTop))  this.dragObj.elStartTop  = 0;
					// Update element's z-index.
 
					this.dragObj.elNode.style.zIndex = ++this.dragObj.zIndex;
 
					// Capture mousemove and mouseup events on the page.
					
					if (this.dragObj.elStartTop < 1){
					  this.dragObj.elStartTop = this.dim().height - (this.dragObj.elNode.clientHeight+parseInt(this.dragObj.elNode.style.bottom,  10));
					}
					
					this.addEvent(document, "mousemove", this.dragGo);
					this.addEvent(document, "mouseup", this.dragStop);
					
				},
		'dragGo':	function (event) {
 
					var x, y;
 
					// Get cursor position with respect to the page.
 
					if (this.browser().isIE) {
					  x = window.event.clientX + document.documentElement.scrollLeft
					    + document.body.scrollLeft;
					  y = window.event.clientY + document.documentElement.scrollTop
					    + document.body.scrollTop;
					}
					if (this.browser().isNS) {
					  x = event.clientX + window.scrollX;
					  y = event.clientY + window.scrollY;
					}
					
					// Move drag element by the same amount the cursor has moved.
					this.dragObj.elNode.style.left = (this.dragObj.elStartLeft + x - this.dragObj.cursorStartX) + "px";
					this.dragObj.elNode.style.top  = (this.dragObj.elStartTop  + y - this.dragObj.cursorStartY) + "px";
					
					if (this.browser().isIE) {
					  window.event.cancelBubble = true;
					  window.event.returnValue = false;
					}
					if (this.browser().isNS)
					  event.preventDefault();
				},
		'dragStop':	function(event) {
					this.removeEvent(document, "mousemove");
					this.removeEvent(document, "mouseup");
				},
		'removeEvent':	function(obj,eventName) {
					var dlg = obj.delegates[eventName];
					
					obj.delegates[eventName]=null;
					
					if (obj.detachEvent ) { 
					    obj.detachEvent( 'on'+eventName, dlg ); 
					    obj[eventName+dlg] = null; 
					} else 
					    obj.removeEventListener( eventName, dlg, false ); 
					dlg=null;
					
  				},
  		'dim':		function(){
					if (self.innerWidth)
					{
 
						frameWidth = self.innerWidth;
						frameHeight = self.innerHeight;
					}
					else if (document.documentElement && document.documentElement.clientWidth)
					{
						frameWidth = document.documentElement.clientWidth;
						frameHeight = document.documentElement.clientHeight;
					}
					else if (document.body)
					{
						frameWidth = document.body.clientWidth;
						frameHeight = document.body.clientHeight;
					}
					var x,y;
					var test1 = document.body.scrollHeight;
					var test2 = document.body.offsetHeight
					if (test1 > test2) // all but Explorer Mac
					{
						x = document.body.scrollWidth;
						y = document.body.scrollHeight;
					}
					else // Explorer Mac;
						 //would also work in Explorer 6 Strict, Mozilla and Safari
					{
 
						x = document.body.offsetWidth;
						y = document.body.offsetHeight;
					}
					var bd = {'width' : frameWidth, 'height' : frameHeight, 'scrolledWidth' : x, 'scrolledHeight' : y};
					return bd;
				}
	});
	
var trace = {
		'enabled':	true,
		'initiated':	false,
		'delegate':	function(that, thatMethod)
				{
					if(arguments.length > 2){
						var _params = [];
						for(var n = 2; n < arguments.length; ++n) _params.push(arguments[n]);
						return function(e) {_params.unshift(e); return thatMethod.apply(that, _params);}
					}else
						return function() {   return thatMethod.call(that);
					}
				},
		'init':		function(){
		 
					try {if (this.enabled){console.create();}}catch(e){}
				},
		'log':		function(a ){
					if (!this.initiated){
					 if (callWhenDOMLoaded){
					  if (!domLoaded){
					   callWhenDOMLoaded(this.delegate(this, this.init));
					  }else {
					   this.init();
					  }
					 }else {
					   window.onload = this.delegate(this, this.init);
					 }
					  this.initiated = true;
					}
					(this.enabled?console.log(a ):function(){})
				}
	}



[Mwah]
0/0
 Reply   Quote More 

 From:  Peter (BOUGHTONP)  
 To:  Mikee     
32270.2 In reply to 32270.1 
What does it do?
0/0
 Reply   Quote More 

 From:  Mikee  
 To:  Peter (BOUGHTONP)     
32270.3 In reply to 32270.2 

It traces variables or strings to a little console that it creates. Or, it'll trace them to the firebug console if it finds it.

 

Example usage:

 

<html>
<head>
<script type="text/javascript" src="tracer.js"></script>
<script type="text/javascript">
trace.log("HELLO");

 

var myvariable = 'hello from variable');
trace.log(myvariable);

 

</script>
</head>
<body>
</body>
</html>

 

It will mess up slightly if you are using window.onload anywhere else in the page. (but there's a workaround if you need it)




[Mwah]
0/0
 Reply   Quote More 

 From:  Mikee  
 To:  ALL
32270.4 
updated with pause and clear
javascript code:
 
//////////////////////////////////////////////////////
//                                                  //
//  Tracer Script (1.1) Written by Mikee Franklin   //
//                                                  //
//////////////////////////////////////////////////////
 
 
function delegateDom( that, thatMethod)
    {
       var _params = [];
       if(arguments.length > 2)
       {
         for(var n = 2; n < arguments.length; ++n) {
         	_params.push(arguments[n]);
         }
       }
       _params.unshift(null);
       return function(e) {_params[0]=e;return thatMethod.apply(that, _params);}
}
var console = (console?console:{
		'paused':	false,
		'created': 	false,
		'messages':	new Array(),
		'log':		function(a){
					var message = document.createElement('pre');
					message.style.borderBottom = '1px solid #999';
					message.style.padding = '5px';
					message.style.margin = '0px';
					message.innerHTML = a;
					this.messages.push(message);
					if (this.created){
					  this.updateLogger();
					}
				},
		'clearLogger':	function (){
					for (var i=(this.logcontent.childNodes.length-1); i>=0; i--){
					  this.logcontent.removeChild(this.logcontent.childNodes[i]);
					}
				},
		'pauseLogger': 	function (){
					if (this.paused){
					 this.paused = false;
					 this.pausebutton.innerHTML = 'pause';
					}else {
					 this.paused = true;
					 this.pausebutton.innerHTML = 'resume';
					}
					
				},
		'updateLogger':	function (refresh){	
		                    if (!this.paused){
					if (refresh){
					  this.clearLogger();
					  for (var i=0; i<this.messages.length; i++){
					    this.logcontent.appendChild(this.messages[i]);
					  }
					}else {
					  this.logcontent.appendChild(this.messages[(this.messages.length-1)]);
					}
					this.logcontent.scrollTop = this.logcontent.scrollHeight;
				    }
				},
		'create':	function(){
					
					this.mainlogger = document.createElement("div");
					this.titlebar = document.createElement("div");
					this.logcontent = document.createElement("div");
					this.clearlog = document.createElement("a");
					this.clearlog.appendChild(document.createTextNode("clear"));
					this.clearlog.style.styleFloat = 'right';
					this.clearlog.style.cssFloat = 'right';
					this.clearlog.style.color = '#FFFFFF';
					this.clearlog.href = 'javascript:void(0);';
					this.addEvent(this.clearlog, 'click', this.clearLogger);
					
 
					this.pausebutton = document.createElement("a");
					this.pausebutton.appendChild(document.createTextNode("pause"));
					this.pausebutton.style.styleFloat = 'right';
					this.pausebutton.style.cssFloat = 'right';
					this.pausebutton.style.marginRight = '10px';
					this.pausebutton.style.color = '#FFFFFF';
					this.pausebutton.href = 'javascript:void(0);';
					this.addEvent(this.pausebutton, 'click', this.pauseLogger);
 
					this.mainlogger.id = 'logger';
					this.mainlogger.style.backgroundColor = '#FFFFFF';
					this.mainlogger.style.position = 'absolute';
					this.mainlogger.style.top = (this.dim().height - 205) + 'px';
					this.mainlogger.style.left = '10px';
					this.mainlogger.style.width = '70%';
					this.mainlogger.style.fontFamily = 'Verdana';
					this.mainlogger.style.fontSize = '11px';
					this.mainlogger.style.color = '#000000';
					this.mainlogger.style.border = '1px solid #000';
					
					
					this.logcontent.style.overflow = 'auto';
					this.logcontent.style.height = '170px';
					this.logcontent.style.width = '100%';
 
					this.titlebar.style.backgroundColor = '#444';
					this.titlebar.style.color = '#ffffff';
					this.titlebar.style.fontWeight = 'bold';
					this.titlebar.style.padding = '5px 5px';
					
 
					this.created = true;
					
					this.titlebar.appendChild(this.clearlog);
					this.titlebar.appendChild(this.pausebutton);
					this.titlebar.appendChild(document.createTextNode("Console"));
 
					this.mainlogger.appendChild(this.titlebar);
					this.mainlogger.appendChild(this.logcontent);
 
					var body = document.getElementsByTagName('body')[0];
					
					body.appendChild(this.mainlogger);
					this.updateLogger(true);
					this.logcontent.scrollTop = this.logcontent.scrollHeight;
					this.addEvent(this.titlebar, 'mousedown', this.dragStart, this.mainlogger.id);
				},
		'addEvent':	function (obj, eventName, thatMethod){		
					var _params = [this,thatMethod];
					if(arguments.length > 3)
					{
					 for(var n = 3; n < arguments.length; ++n) {
						_params.push(arguments[n]);
					 }
					}
					var dlg = delegateDom.apply(this, _params);
					if (!obj.delegates){obj.delegates = {};}
					obj.delegates[eventName]=dlg;
					
					if (obj.addEventListener){
					  
					      obj.addEventListener(eventName, dlg, true);
					} else if (obj.attachEvent){
					      var r = obj.attachEvent("on"+eventName, dlg);
					}
					
				},
		'browser':	function() {
					if (!this.browserObj){					
 
						this.browserObj = {};
 
						var ua, s, i;
 
						this.browserObj.isIE    = false;
						this.browserObj.isNS    = false;
						this.browserObj.version = null;
						ua = navigator.userAgent;
 
						s = "MSIE";
						if ((i = ua.indexOf(s)) >= 0) {
						  this.browserObj.isIE = true;
						  this.browserObj.version = parseFloat(ua.substr(i + s.length));
 
						}
 
						s = "Netscape6/";
						if ((i = ua.indexOf(s)) >= 0) {
						  this.browserObj.isNS = true;
						  this.browserObj.version = parseFloat(ua.substr(i + s.length));
 
						}
 
						// Treat any other "Gecko" browser as NS 6.1.
						s = "Gecko";
						if ((i = ua.indexOf(s)) >= 0) {
						  this.browserObj.isNS = true;
						  this.browserObj.version = 6.1;
						}
					}
					return this.browserObj;
					
				},
		'dragObj':	{
					'zIndex':	0
				},
		'dragStart':	function (event, id) {
				
					var el;
					var x, y;
 
					// If an element id was given, find it. Otherwise use the element being
					// clicked on.
					if (id)
					  this.dragObj.elNode = document.getElementById(id);
					else {
					  if (this.browser().isIE)
					    this.dragObj.elNode = window.event.srcElement;
					  if (this.browser().isNS)
					    this.dragObj.elNode = event.target;
					    // If this is a text node, use its parent element.
 
					  if (this.dragObj.elNode.nodeType == 3)
					    this.dragObj.elNode = this.dragObj.elNode.parentNode;
					}
					
 
					// Get cursor position with respect to the page.
 
					if (this.browser().isIE) {
					  x = window.event.clientX + document.documentElement.scrollLeft
					    + document.body.scrollLeft;
					  y = window.event.clientY + document.documentElement.scrollTop
					    + document.body.scrollTop;
					}
					
					if (this.browser().isNS) {
					  x = event.clientX + window.scrollX;
					  y = event.clientY + window.scrollY;
					}
 
					// Save starting positions of cursor and element.
 
					this.dragObj.cursorStartX = x;
					this.dragObj.cursorStartY = y;
					this.dragObj.elStartLeft  = parseInt(this.dragObj.elNode.style.left, 10);
					this.dragObj.elStartTop   = parseInt(this.dragObj.elNode.style.top,  10);
 
					if (isNaN(this.dragObj.elStartLeft)) this.dragObj.elStartLeft = 0;
					if (isNaN(this.dragObj.elStartTop))  this.dragObj.elStartTop  = 0;
					// Update element's z-index.
 
					this.dragObj.elNode.style.zIndex = ++this.dragObj.zIndex;
 
					// Capture mousemove and mouseup events on the page.
					
					if (this.dragObj.elStartTop < 1){
					  this.dragObj.elStartTop = this.dim().height - (this.dragObj.elNode.clientHeight+parseInt(this.dragObj.elNode.style.bottom,  10));
					}
					
					this.addEvent(document, "mousemove", this.dragGo);
					this.addEvent(document, "mouseup", this.dragStop);
					
				},
		'dragGo':	function (event) {
 
					var x, y;
 
					// Get cursor position with respect to the page.
 
					if (this.browser().isIE) {
					  x = window.event.clientX + document.documentElement.scrollLeft
					    + document.body.scrollLeft;
					  y = window.event.clientY + document.documentElement.scrollTop
					    + document.body.scrollTop;
					}
					if (this.browser().isNS) {
					  x = event.clientX + window.scrollX;
					  y = event.clientY + window.scrollY;
					}
					
					// Move drag element by the same amount the cursor has moved.
					this.dragObj.elNode.style.left = (this.dragObj.elStartLeft + x - this.dragObj.cursorStartX) + "px";
					this.dragObj.elNode.style.top  = (this.dragObj.elStartTop  + y - this.dragObj.cursorStartY) + "px";
					
					if (this.browser().isIE) {
					  window.event.cancelBubble = true;
					  window.event.returnValue = false;
					}
					if (this.browser().isNS)
					  event.preventDefault();
				},
		'dragStop':	function(event) {
					this.removeEvent(document, "mousemove");
					this.removeEvent(document, "mouseup");
				},
		'removeEvent':	function(obj,eventName) {
					var dlg = obj.delegates[eventName];
					
					obj.delegates[eventName]=null;
					
					if (obj.detachEvent ) { 
					    obj.detachEvent( 'on'+eventName, dlg ); 
					    obj[eventName+dlg] = null; 
					} else 
					    obj.removeEventListener( eventName, dlg, false ); 
					dlg=null;
					
  				},
  		'dim':		function(){
					if (self.innerWidth)
					{
 
						frameWidth = self.innerWidth;
						frameHeight = self.innerHeight;
					}
					else if (document.documentElement && document.documentElement.clientWidth)
					{
						frameWidth = document.documentElement.clientWidth;
						frameHeight = document.documentElement.clientHeight;
					}
					else if (document.body)
					{
						frameWidth = document.body.clientWidth;
						frameHeight = document.body.clientHeight;
					}
					var x,y;
					var test1 = document.body.scrollHeight;
					var test2 = document.body.offsetHeight
					if (test1 > test2) // all but Explorer Mac
					{
						x = document.body.scrollWidth;
						y = document.body.scrollHeight;
					}
					else // Explorer Mac;
						 //would also work in Explorer 6 Strict, Mozilla and Safari
					{
 
						x = document.body.offsetWidth;
						y = document.body.offsetHeight;
					}
					var bd = {'width' : frameWidth, 'height' : frameHeight, 'scrolledWidth' : x, 'scrolledHeight' : y};
					return bd;
				}
	});
	
var trace = {
		'enabled':	true,
		'initiated':	false,
		'delegate':	function(that, thatMethod)
				{
					if(arguments.length > 2){
						var _params = [];
						for(var n = 2; n < arguments.length; ++n) _params.push(arguments[n]);
						return function(e) {_params.unshift(e); return thatMethod.apply(that, _params);}
					}else
						return function() {   return thatMethod.call(that);
					}
				},
		'init':		function(){
		 
					try {if (this.enabled){console.create();}}catch(e){}
				},
		'log':		function(a ){
					if (!this.initiated){
					 if (callWhenDOMLoaded){
					  if (!domLoaded){
					   callWhenDOMLoaded(this.delegate(this, this.init));
					  }else {
					   this.init();
					  }
					 }else {
					   window.onload = this.delegate(this, this.init);
					 }
					  this.initiated = true;
					}
					(this.enabled?console.log(a ):function(){})
				
0/0
 Reply   Quote More 

 From:  Peter (BOUGHTONP)  
 To:  Mikee     
32270.5 In reply to 32270.3 
Oh. That suggests you haven't heard of Firebug, which can do that, and several other handy things too (especially CSS tools).
0/0
 Reply   Quote More 

 From:  Mikee  
 To:  Peter (BOUGHTONP)     
32270.6 In reply to 32270.5 
You did not read the message you replied to, in which i mentioned firebug.

My script uses firebug if it can find it. If not (i.e. if you're debugging in IE), it creates its own console.

New version..

Allows error reporting now
example:

javascript code:
 
function myfun (){
 try {
  // cause an error here
 }catch(e){
  trace.error(e);
 }
}


Also it can be enabled from the query string using ?trace.
If you want to filter what is shown, you can use ?trace=log|error and remove the one you dont want.



[Mwah]

Attachments:
tracer.js

0/0
 Reply   Quote More 

 From:  Mikee  
 To:  ALL
32270.7 
bug ironed out



[Mwah]

Attachments:
tracer.js

0/0
 Reply   Quote More 

 From:  Peter (BOUGHTONP)  
 To:  Mikee     
32270.8 In reply to 32270.6 
I did read your message... except for that second sentence, which I somehow missed. :$


But there is a Firebug Lite which provides a console for IE/etc, so I'm still a bit miffed.
0/0
 Reply   Quote More 

 From:  Mikee  
 To:  Peter (BOUGHTONP)     
32270.9 In reply to 32270.8 

It's simply a fallback for if you dont have firebug installed.

 

It also avoids you having to take out all of the console.log's every time you want to show a client it working in action while it's in development.




[Mwah]
0/0
 Reply   Quote More 

 From:  milko  
 To:  Peter (BOUGHTONP)     
32270.10 In reply to 32270.8 
You're not miffed.

milko
0/0
 Reply   Quote More 

 From:  Mikee  
 To:  ALL
32270.11 
Added an extra (optional) thing called "sources".

trace.log("hello", "mysource");
trace.error(e, "mysource");

you can then filter by sources.

Generally I try to use either class names or function names.

I.e.

javascript code:
 
 function testicals(){
  try{
   var mystring = "hello this is my string";
   trace.log(mystring ,"testicals()");
  }catch(e){
   trace.error(e ,"testicals()");
  }
 }
 
 function boobies(){
  try{
   var mystring = "hello this is my string";
   trace.log(mystring ,"boobies()");
  }catch(e){
   trace.error(e ,"boobies()");
  }
 }



[Mwah]

Attachments:
tracer.js

0/0
 Reply   Quote More 

Message 32270.12 was deleted

 From:  Sulkpot  
 To:  Mr (M00RL0CK)     
32270.13 In reply to 32270.12 
*a big spazzy spaz.

0/0
 Reply   Quote More 

 From:  THERE IS NO GOD BUT (RENDLE)  
 To:  Sulkpot     
32270.14 In reply to 32270.13 
Ahem.

0/0
 Reply   Quote More 

 From:  Mikee  
 To:  ALL
32270.15 

New version with a couple of big bug fixes.

 

code getting pretty messy now so I might rewrite it as a class if anyone is interested in it.




[Mwah]

Attachments:
tracer.js

0/0
 Reply   Quote More 

 From:  Mikee  
 To:  ALL
32270.16 
Updated again. Now with type reporting and whatnot.

Also added a demo page here to see it in action with a very very simple page.



[Mwah]

Attachments:
tracer.js

0/0
 Reply   Quote More 

 From:  andy  
 To:  Mikee     
32270.17 In reply to 32270.16 
i like it! good job
0/0
 Reply   Quote More 

 From:  Mikee  
 To:  ALL
32270.18 

Added HTML dom object highlighting.

 

fixed bugs.

 

Example of html dom highlighting:

 

http://www.beentheretogether.co.uk/code/tracer/htmlelm.php?trace

 

Note: only tested in IE so far.




[Mwah]
0/0
 Reply   Quote More 

Reply to All    
 

1–18

Rate my interest:

Adjust text size : Smaller 10 Larger

Beehive Forum 1.5.2 |  FAQ |  Docs |  Support |  Donate! ©2002 - 2024 Project Beehive Forum

Forum Stats