我已添加:
ExternalInterface.addCallback('sendToActionScript', setKeyboardFocus);
ExternalInterface.call("setFocus", 'pathfinder');
在我的主类的init()
函数内。
在HTML中我有这个:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>pathFinder</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="screen">
html, body { height:100%; background-color: #333333;}
body { margin:0; padding:0; overflow:hidden; }
#flashContent { width:100%; height:100%; }
</style>
<script type="text/javascript">
function getFlashMovie(movieName) {
var isIE = navigator.appName.indexOf("Microsoft") != -1;
return (isIE) ? window[movieName] : document[movieName];
}
function callToActionscript(str)
{
var fm = getFlashMovie("pathfinder");
fm.sendToActionScript(str);
}
function setFocus(id){
var f = document.getElementById(id);
f.focus();
callToActionscript('test')
}
</script>
</head>
<body>
<div id="flashContent" align='center'>
<table width="100%" height="100%" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td align="center" valign="middle" bgcolor="#333333"><table width="1050" border="0"
cellpadding="0" cellspacing="0">
<tr>
<td>
<div align="center">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#versio
n=6,0,0,0"
WIDTH="1050"
HEIGHT="600"
id="pathfinder"
ALIGN="middle">
<PARAM NAME=movie VALUE="pathFinder.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#333333>
<EMBED src="pathFinder.swf" quality=high bgcolor=#333333 WIDTH="1050" HEIGHT="600"
NAME="pathfinder" ALIGN="middle" TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always">
</EMBED> </OBJECT></div></td></tr></td></tr></table>
</div>
</body></html>
在主要阶段,我有一个动态文本字段实例'test_txt'来检查函数是否被调用。
所以在ExternalInterface代码之后我有:
private function setKeyboardFocus(str:String):void {
stage.addEventListener(KeyboardEvent.KEY_DOWN,checkKeysDown);
stage.addEventListener(KeyboardEvent.KEY_UP,checkKeysUp)
test_txt.text = str
}
问题是flash没有得到键盘焦点(从不添加KeyboardEvent的事件监听),从不调用函数setKeyboardFocus。
任何帮助?
答案 0 :(得分:1)
根据我发现的一个来源,你需要在两个地方添加allowScriptAccess="always"
。
<EMBED ... allowScriptAccess="always"> </EMBED>
区块中。 <PARAM NAME="allowScriptAccess" VALUE="always" >
与其他PARAM块答案 1 :(得分:1)
验证fm是否已分配给对象或嵌入组件。您应该可以使用Chrome或Firefox中的javascript调试工具对此进行验证。我想这就是你出错的地方。这是一个完全非标准的html包装,来自我自己看到的,但在大多数情况下,它看起来你的东西是有序的。但有一点是错误的,即Object标签和信息将被应用于IE,Embed标签信息将应用于使用Netscape插件的浏览器(Firefox ......除了IE之外的所有内容)。另外我没有在Embed元素上看到id,我认为你还需要像对象一样给这个ID,我不确定如果你使用相同的ID,你是否会得到javascript错误,我可能会把它称为pathFinderE或类似的东西然后修改这个方法:
function getFlashMovie(movieName) {
var isIE = navigator.appName.indexOf("Microsoft") != -1;
return (isIE) ? window[movieName] : document[movieName + "E"];
}