Flash调用Javascript

2018-06-23 18:12:39来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

这里用了两种方法,getURL(”javascript:函数名”)和ExternalInterface,ExternalInterface更稳定一些。

AS代码:

on (release) {
getURL(”javascript:say(’我是Flash中的文字,用getURL方法’)”);
}

on (release) {
import flash.external.ExternalInterface;
ExternalInterface.call(”say”,”我是Flash中的文字,用ExternalInterface方法”);
}

HTML代码:

<!doctype html public “-//w3c//dtd html 4.0 transitional//en”>
<html>
<head>
<title> new document </title>
<meta name=”generator” content=”editplus”>
<meta name=”author” content=”">
<meta name=”keywords” content=”">
<meta name=”description” content=”">
<script language=”javascript”>
<!–
function say(word) {
document.getElementById(”word”).innerHTML = word
}

window.onload = function() {
say(’html’)
}
//–>
</script>
</head>
<body>
<object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0”
id=”swf”
width=”250″
height=”150″
title=”AsJsCall”
>
<param name=”movie” value=”js.swf” />
<param name=”quality” value=”high” />
<embed src=”js.swf” quality=”high” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”250″ height=”150″></embed>
</object>
Flash say: <span id=”word” style=”color:red”></span>
</body>
</html>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:把fla文件输出成和swf一样的gif文件

下一篇:Flash基础教程:如何掌握基本按钮知识