首页 > 办公 > Flash > 正文

在flash 单击按钮,弹出指定要求的窗口

2024-09-12 17:51:12
字体:
来源:转载
供稿:网友
选中指定按钮后,在flash代码编辑窗口中添加:
复制代码 代码如下:

stop();
this.onRelease = function(){
getURL("javascript:openWin();");
}

在包含改Flash文件的页面中,添加如下JavaScript脚本
复制代码 代码如下:

<script type="text/JavaScript">
<!--
function openWin() {
window.open('http://blog.csdn.net/guoquanyou','88','top=0,left=200,width=600,height=600,scrollbars=no,resizable=no,status=yes,z-look=yes,alwaysRaised=yes,location=no,depended=no,center:yes');
}
-->
</script>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表