使用flash.external.ExternalInterface
步骤一:flash中定义可以访问的函数hello
flash as文件中的关键代码:
import flash.external.ExternalInterface;
function hello(){
return "测试成功了哦~~";
}
//允许js调用flash中的函数 参数1:要调用flash函数的js函数,参数2:被调用flash函数
ExternalInterface.addCallback("helloas",hello);
步骤二:js中定义可以访问的函数hello和flash文件加载