$.console – update
September 4th, 2007$.console has been updated to version 1.1 with the following changes:
- Fixed a bug where console would not show more than 4 lines of code on some systems
- Added ability to pass parameters as an Array to registered functions
- Added additional key listener (220) for German keyboards
The new way functions handle parameters is very useful for debugging:
Actionscript:
-
$.console.register(testD,"D");
Now type "D 1,2,3,4" without quotes in the console to see the result.
It will call the following function:
Actionscript:
-
private function testD(param:Array = null):void {
-
if(param) {
-
$.trace("with param " + param);
-
} else {
-
$.trace("without param");
-
}
-
}
I want to say special thanks to Eric (ericd) and Dave for spotting the bugs. Thanks guys!


September 5th, 2007 at 8:55 pm
Hi there!
I just wanted to tell you this is a wonderful idea! will this become the next firebug for flash?
gr. Roxlu
September 18th, 2007 at 2:46 pm
thanks you for this update.
sorry for my poor english.