var flashDom = document.getElementById(FLASH_DOM_ID);
if (flashDom && typeof (flashDom.__long_request) === 'function') {
try {
flashDom['__long_request'](msgObj);
} catch (e) {
console.warn('请求__long_request函数出错');
console.error(e);
}
} else {
console.error('flash __long_request函数未注册');
}
代码片段
现在我js请求flash函数的时候报错(Error: An invalid exception was thrown ),但是flash函数是存在的。暂时没有思路排查这个问题。
你这代码上的不全啊,html呢?看不出来什么问题,抛个链接,你看下吧,是不是embed标签没加
http://outofmemory.cn/code-sn...
找到原因了,就是跨域的问题,只要在AS代码中设置允许访问的域名,即可。
这个您能讲一下怎么解决的吗,我因为需要用这个swf这个文件,不知道怎么写,谢谢