Output Flash Trace to Firebug Console
Posted
by Nick
on Stack Overflow
See other posts from Stack Overflow
or by Nick
Published on 2009-09-28T22:26:50Z
Indexed on
2010/03/19
5:11 UTC
Read the original article
Hit count: 351
Hello,
I am trying to output my Flash application's trace to the firebug console. After some Goggling I have found that other are doing something like this:
public static function debug(text: Dynamic):Void {
trace(text);
ExternalInterface.call("console.log", text.toString());
}
My Firebug console never outputs anything and always just shows "Please Reload Page to enable..."
So, of coarse, I have reloaded the page and it does not seem to change anything. I have the correct Object imported into the calling class. I am running FireBug 1.4.2.
Can someone tell me how to implement this?
Thanks!
-Nick
© Stack Overflow or respective owner