Trace AS3 live

Hi,

What software are you people using to trace messages when the swf is running online inside browser? I know and even used on the past some softwares, but I need one that works with AS3.

I heard something about one that works with firebug. But I need one that don´t need a browser. One that works with a standalone swf.

Other question:
Is it possible to use the trace method from AS3 to log to an external software?

Has anyone been able to get this to work on a Mac? I’m running debugger version of Flash Player 9 r.115. I have never been able to get this to work on either one of my machines. Any help would be greatly appreciated.

Another trace option is to use a seperate swf file and localConnection(). This is a trick Musicman from FlashKit shared in the server side forum in response to a query on how to trace using Ming which has no IDE. Simply pass the string you want to trace to the localConnection and receive and display the string in your second swf file. It’s a hack, but it works.

I think there is another way to trace message on line,
you can put a textField on the root,and create a function
public function myTrace(msg:String):void
{
root.txtField.text += msg+newline;
}
then if you finish the program then you can empty the function

[QUOTE=congyaan;2325397]I think there is another way to trace message on line,
you can put a textField on the root,and create a function
public function myTrace(msg:String):void
{
root.txtField.text += msg+newline;
}
then if you finish the program then you can empty the function[/QUOTE]
While debugging, you may have a problem with code that hangs the player, preventing the screen from being updated with your myTrace info. Sending the data to a seperate swf via localConnection happens instantly, not on screen refresh, so your data will show up regardless.