Trace() is not working in flashbuilder 4

actionscript-3apache-flexflash-cs3

i'm trying to use actionscript 3.0 and using trace(), it never outputs content of trace of variable either in flash player or in output area?
how to coorect or should i enable something?
whats the problem?

Best Answer

As others have pointed out, trace only works when in debug.
If you want information to get dumped out when running "release", you'll need to use the logging api that flex provides.

Related Topic