Skip to content

Instantly share code, notes, and snippets.

@nus
Created March 5, 2013 01:02
Show Gist options
  • Save nus/5087163 to your computer and use it in GitHub Desktop.
Save nus/5087163 to your computer and use it in GitHub Desktop.
ブラウザのcosole.logを利用してFlashから出力。メソッド名Log.iはAndroidのLogパッケージに影響された。
package {
import flash.external.ExternalInterface;
public class Log {
public static function i(obj:Object):void {
if(ExternalInterface.available) ExternalInterface.call("console.log", obj);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment