そろそろActionScript2.0のネタなのかActionScript3.0のネタなのかはっきり書いておかないと混乱しそう。
これはActionScript2.0ネタです
Debug flash with Firebug | Foobr, forever beta
http://foobr.co.uk/2007/02/debug_flash_with_firebug/
これ使うとFireBugのconsole系のメソッドがActionScriptから使えちゃいます。
こんなかんじ。
var console = new flashBug(true);
console.time("flashBug Total running time");
console.info("This is some general information");
console.debug("Variable foo: "+foo);
console.warn("This has some important information");
console.error("Whoops, there has been an error!!!");
console.timeEnd("flashBug Total running time");
flashBug-tests
http://www.reach-out.org.uk/flashBug/
consoleっていろいろ機能があったんだ。
IT戦記 - FireBug の console を toSource してみた
http://d.hatena.ne.jp/amachang/20060905/1157436393
Firebug Command Line API
http://pages.citebite.com/l1e1e3k7h0qys



