从外部接口调用JavaScript

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从外部接口调用JavaScript相关的知识,希望对你有一定的参考价值。

There must also be a javascript function defined in the containing html page:
function makePopup(url,pop_name,width,height) {
window.open(url, pop_name, "width="+width+",height="+height+",resizable=yes,scrollbars=yes");
}
  1. import flash.external.*;
  2. ExternalInterface.call("makePopup('mylink.html','My Link','750','475')");

以上是关于从外部接口调用JavaScript的主要内容,如果未能解决你的问题,请参考以下文章