Hey.
If I set an object like this:
var dat:Object = new Object();
And set variables within it like this:
dat.size=5;
dat.open="asdf";
Is it possable to print them like this:
trace(dat);//its not
instead of like this:
trace(dat.size+" "+dat.open);