> Hi all, > > Currently I'm working on a plugin for the fantastic Firebug extension > (www.getfirebug.com), which makes it possible to log directly to the > console from within you flash code. > > You need 2 things: > 1) The "flashdebug" extension (read on....) > 2) Include console.as in you flash app, and log with: console.log() > > But, as this is just a private project which is far from stable, I > haven't created a website where I make this available. Though if someone > is interested AND has a place to put the extension for download please > send me a message. > > I'll continue the development for this plugin so I can release a stable > version soon. For now, you can perfectly work with the first beta version.
Hi, You might be interested in haxe.Firebug sources that is the same, but for haXe. Watch http://cvs.motion-twin.com/horde/chora/browse.php?rt=haxe In std/haxe/Firebug.hx It works for Flash6-8, Flash9 and Javascript : if( haxe.Firebug.detect() ) haxe.Firebug.redirectTraces(); Then all uncaught exceptions and traces will be displayed in the Firebug console. Nicolas _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
