http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ActionScript与JavaScript交互</title>
<script src="AC_RunActiveContent.js" type="text/javascript"></script>
<script src="send.js" type="text/javascript"></script>
</head>
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" name="FLASH_AREA"></embed>
</object>
</noscript>
</p>
</body>
</html>
【send.js】
function start_send(){
var val=document.form1.textfield.value;
var fl_node=document.getElementById("FLASH_AREA");
fl.send("您输入的内容如下:"+val);
}
【get.as】
function get_data(val):void{
cont.test=val;
}
if (ExternalInterface.available){
ExternalInterface.addCallback("send",get_data);
}
【flash.fla】
include "get.as";