在Flash所在的网页<head></head>中用javascript来建立个函数。它可以根据自己所需的变量和参数来打开IE窗口。
只需要在Flash中发送变量和差数就可以。。
例如在Flash所在的网页<head></head>之间用javascript定义这么一个函数
<script language="JavaScript" type="text/JavaScript">
<!--
function ****Window(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
然后 Flash中的按扭动作只要这么写就可以了
on(release){
getURL("javascript :****Window(’asdf.htm’,’’,’width=100,height=100’)")
}
点击浏览该文件