解决方法是,使用Firfox调试你的程序,或者修改
if (!version)
{
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version = "WIN 2,0,0,11";
} catch (e) {
version = -1;
}
}
为
if (!version)
{
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version=axo.GetVariable("$version");
} catch (e) {
version = "WIN 2,0,0,11";
}
}
用FLEX写东西,运行HTML时候总提示:Alternate HTML content should be placed here. This content requires the Adobe Flash Player
最新推荐文章于 2021-04-04 07:27:12 发布
本文提供了一种解决Flash版本检测问题的方法,建议使用Firefox进行程序调试,或修改代码以准确获取Flash播放器版本信息。
3万+

被折叠的 条评论
为什么被折叠?



