Skip to content

Instantly share code, notes, and snippets.

@KxNxT
Created July 11, 2013 14:47
Show Gist options
  • Save KxNxT/5976102 to your computer and use it in GitHub Desktop.
Save KxNxT/5976102 to your computer and use it in GitHub Desktop.
ブラウザのコンソールにlog出力。 こちらより http://blog.bouze.me/457
import flash.external.ExternalInterface;
function log(...args:*):void
{
ExternalInterface.call("function(str){ if (typeof window.console == 'object'){ console.log(str) } }", args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment