tags:

views:

23

answers:

2

Hi I'm debugging a problem and I've got:

o = URLUtil.stringToObject(browserManager.fragment);

When I try to put an alert on the var o, I get [object] [object]. How do I find out its value?

Thank you.

-Laxmidi

+1  A: 

How about monster debugger? De MonsterDebugger It's beautiful and handy.

I was going to write out instructions but really this page is awesome: Instructions

Chuck Vose
+1, that's a nice debugger. Works well.
Wade Mueller
+1  A: 

From Actionscript reference :

var myObject:Object = {firstName:"Tara", age:27, city:"San Francisco"}; 
for (var prop in myObject) { 
    trace("myObject."+prop+" = "+myObject[prop]); 
} 
/*
myObject.firstName = Tara 
myObject.age = 27 
myObject.city = San Francisco
*/
kubarium