// flash.external.ExternalInterface を import しておく。 import flash.external.ExternalInterface; // hello という名前で定義した ActionScript関数を // JavaScript 側から as_func という名前で呼び出す。 ExternalInterface.addCallback("as_func", hello); // ActionScript関数 hello を定義する。 function hello():String { return "Hello!!"; }