#52004/6/29 9:45:14
是否是这样:
getURL中:
on (release)
{
getURL("javascript:popWindow(\'http://URLabc.html\',\'windowname\',\'width=100,height=100\');", "");
}
然后在网页中定义function
function popWindow(theURL,winName,features){
window.open(theURL,winName,features);
}
在插入FLASH动画部分加一句
<param name="AllowScriptAccess" value="always">
对吧?
但是为什么我做了之后有时候成功有时候提示script error呢?