I have been playing around with as3.0 today for the first time, and found there to be some things missing that were there in as2.0 and not in as3.0. One of these is ObjectDumper; so i made a as3.0 version.
I have been playing around with as3.0 today for the first time, and found there to be some things missing that were there in as2.0 and not in as3.0. One of these is ObjectDumper; so i made a as3.0 version.
July 21st, 2007 at 5:35 am
Trying to use it the same way I used the as2 version and I’m getting errors up the wazoo - can you show it working please? Think I’m doing something retarded.
August 26th, 2007 at 10:33 pm
Sure, its the same as the dumper in as2 ..
import ObjectDumper03;
var myArray:Array = ["blue", "red", "yellow"];
trace(ObjectDumper.toString(myArray));
March 5th, 2008 at 4:06 pm
bug report
on your downloadable there is an error in the package definition
you wrote “package classes.utLIs” inseted of “utILs
and hence the usage would be
import classes.utils.ObjectDumper3
and the usage would be
ObjectDumper3.toString(the_object)
with this corrections it works well.. thanks for the class. ObjectDumper scores as one of the most useful utils and classes ever in flash
THANKS ALOT :)