我正在尝试在Flash按钮(在SWF Flash对象中)中创建一个链接到JavaScript窗口。我使用下面的代码,但它没有用。对于Flash我使用的是AS2。
我在Flash按钮中嵌入的代码如下:
on (release) {
getURL ("javascript: openWindow ('filex.htm','','scrollbars=yes,width=1100,height=910')")
}
在HTML标题内:
<script language="JavaScript" type="text/JavaScript">
<!--
function openWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
非常感谢您的帮助!