Output Flash Trace to Firebug Console
- by Nick
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