Trace on Chrome/Browser console

Dave picture Dave · Nov 21, 2012 · Viewed 18.1k times · Source

Does anybody know how to trace messages in the google chrome console using Flex3. In the logs section for example.

Answer

Ranhiru Jude Cooray picture Ranhiru Jude Cooray · Nov 21, 2012
import flash.external.ExternalInterface;

ExternalInterface.call("console.log", "YourString");

See here for more information.