I am totaly participating in this! Today is my start. Good luck to me!
This year is for learning java. It's new for me (however as3 quite similar). Going to participate as many jams and compos as possible.
Games Programmer
public class Logger { public static function log(message:String):void { if (ExternalInterface.available) ExternalInterface.call("console.log", text); else trace(text); } }
Logger.log
instead of default trace
function and you can see all trace messages directly in browser console (i.e. Google Chrome's JavaScript console). It can be very useful!