Archive for September, 2007

Moving To Greece

Friday, September 21st, 2007

Moving To Greece

Hey everyone,

From September 26th to 27th I will be on my way to Greece where I plan to stay for at least 3 months. If you are a AS3 / JS / AIR developer living in (or near) Athens, I would be very happy to meet with you! Please drop me a line or two to paulius [at] uza.lt with your contact info

Thanks and I look forward to seeing you there!

[photo by gbatistini]

$.console – update

Tuesday, 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:
  1. $.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:
  1. private function testD(param:Array = null):void {
  2.     if(param) {
  3.         $.trace("with param " + param);
  4.     } else {
  5.         $.trace("without param");
  6.     }
  7. }

I want to say special thanks to Eric (ericd) and Dave for spotting the bugs. Thanks guys!

Download Source (v1.1) AS3 Console (1627)