搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

plugin required by website and linked to Mozilla. Option to allow does not appear

  • 2 个回答
  • 1 人有此问题
  • 13 次查看
  • 最后回复者为 cor-el

more options

Authorware_Web_Player_Plugin.exe plugin is required by my website (eduthink.us) to run the course content (e.g., Addition).

I linked the Web Player to Mozilla. The option "to allow" does not appear on the web page.
Authorware_Web_Player_Plugin.exe plugin is required by my website (eduthink.us) to run the course content (e.g., Addition). I linked the Web Player to Mozilla. The option "to allow" does not appear on the web page.

所有回复 (2)

more options

Hi Suzanne, are you really using Firefox 23?

Unfortunately Firefox isn't being very helpful to users who do not have the Shockwave (for Director, not Flash) plugin. The old method of providing a pluginspage address doesn't seem to work any more (I'm testing in Firefox 40) and when I search in the source code it doesn't seem to be implemented any more.

Can you add a script to the end of that page? If so, here's what I suggest adding:

<script type="text/javascript">
function checkForShockwave(){
 var mt = navigator.mimeTypes['application/x-authorware-map'];
 if (mt === undefined){ // plugin not available, give user a link
  var div = document.createElement("div");
  div.setAttribute("style", "color:#fff;background:#00f;font-weight:bold;position:absolute;top:0;left:0;padding:8px 16px 12px");
  div.innerHTML = 'This page requires the Shockwave for Director plugin, which you can download from Adobe here:<br><a href="https://get.adobe.com/shockwave/" style="color:#fff;background:#00f" target="_blank">https://get.adobe.com/shockwave/</a>';
  document.body.appendChild(div);
 }
}
// For Firefox and compatible browsers, check for the Shockwave plugin
if (navigator.userAgent.indexOf("Gecko") > -1) checkForShockwave();
</script>
 
more options