ExternalInterface.addCallback怎么那么难调用呀 ,谁有例子呀
JS 如何调用flash函数ExternalInterface.addCallback怎么那么难调用呀 ,谁有例子呀
package{
import flash.display.Sprite;
import flash.display.Loader;
import
import flash.display.*;
import flash.events.*;
import flash.external.*;
import *;
import flash.*;
import flash.external.ExternalInterface;
public class Call extends Sprite {
public function Call(){
//允许js中的flAlert()调用flash中的showAlert()
ExternalInterface.addCallback("showAlert", null, showAlert);//允许js调用flash中的函数
}
}
function showAlert() {
//ExternalInterface.call("jsAlert("+i+")");//flash调用js中的函数
txt.text = "js调用了flash函数";
}
}
<script language="javascript">
//调用flash中的方法,"swfId"为html页中swf的id
function callExternal() {
thisMovie("call").showAlert()
}
//搭建js与flash互通的环境
function thisMovie(movieName) {
if (navigator.appName.indexOf("Microsoft") != -1) {
return window[movieName]
}else{
return document[movieName]
}
}
</script>