Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Embedded sound plays in Firefox 3.6.15 for Linux (i586), but not in the same version for Linux (i686)

more options

The same embedded 10-sec0nd sound-clip within my Welcome page plays within the version running on my old, 450-MHz, AMD K6-III+ machine in openSUSE 10.2, but does not play within the exact same version running on my newer, 1.4-GHz, Pentium IV machine in openSUSE 11.2. This same page was opened from the same USB flash-drive on both machines, so there is no coding difference within the page itself, and neither it, nor the sound-file is corrupted.

I did not disable JavaScript within this browser on the newer machine, and I doubt this is a sound-configuration or plug-in problem on the newer machine, since randomly selected sound-effects from my JavaScript multiple-choice quiz app (located in the same directory on the flash-drive) plays on it in-response to user input (i.e., right or wrong answers).

The sound-related code within the Welcome page is as follows:

<span id="dummy"></span>
<script type="text/javascript">
<!--
 playSound();
//-->
</script>

The code within the linked JavaScript source-file is as follows:

/*Play truck sound on index page.*/
function playSound() {
 if(document.getElementById)//Test by function if browser is DOM 2-compliant.
  {
   document.getElementById("dummy").innerHTML="<embed src='sounds/18wheeler.wav' hidden='true' width='0'  height='0' autostart='true' loop='false' />";
  }
else
  {
    alert("Sorry! This browser does not have the DHTML capability required to play sound according to the JavaScript coding within this page. To enable sound, please update your browser.");

  }
 }


Any help in this matter would be greatly appreciated.

Karl

The same embedded 10-sec0nd sound-clip within my Welcome page plays within the version running on my old, 450-MHz, AMD K6-III+ machine in openSUSE 10.2, but does not play within the exact same version running on my newer, 1.4-GHz, Pentium IV machine in openSUSE 11.2. This same page was opened from the same USB flash-drive on both machines, so there is no coding difference within the page itself, and neither it, nor the sound-file is corrupted. I did not disable JavaScript within this browser on the newer machine, and I doubt this is a sound-configuration or plug-in problem on the newer machine, since randomly selected sound-effects from my JavaScript multiple-choice quiz app (located in the same directory on the flash-drive) plays on it in-response to user input (i.e., right or wrong answers). The sound-related code within the Welcome page is as follows: <pre><nowiki><span id="dummy"></span> <script type="text/javascript"> <!-- playSound(); //--> </script></nowiki></pre> The code within the linked JavaScript source-file is as follows: <pre><nowiki> /*Play truck sound on index page.*/ function playSound() { if(document.getElementById)//Test by function if browser is DOM 2-compliant. { document.getElementById("dummy").innerHTML="<embed src='sounds/18wheeler.wav' hidden='true' width='0' height='0' autostart='true' loop='false' />"; } else { alert("Sorry! This browser does not have the DHTML capability required to play sound according to the JavaScript coding within this page. To enable sound, please update your browser."); } } </nowiki></pre> Any help in this matter would be greatly appreciated. Karl

由cor-el于修改

所有回复 (5)

more options

Sorry, I thought I posted all of the sound-related code within the Welcome page, but apparently your system has problems displaying all of it. Here it is (with quotation marks added to the missing piece to enable it to display):

<span id="dummy"></span>
"<script type="text/javascript">
<!--
 playSound();
//-->
</script>"

由cor-el于修改

more options

Let's try this again with escape characters added:

<span id="dummy"></span>
 <script type="text/javascript">
 <!--
  playSound();
  //-->
</script\>

由cor-el于修改

more options

Please disregard my last reply; apparently, my previous replay displayed properly once I submitted it.

more options

I've edited your posts to show the code correctly.

Do you have a link to that web page?

To play .wav files you need a player like Gecko media player and MPlayer to play that sound. You can also try to unhide that player to see if the player shows.

more options

I am using the Xine plugin, which opens the Xine player. That information has been cut-and-pasted from within the Troubleshooting Information page. I will try unhiding the player now to see if it displays. . .

Yes, the Xine player is visible in the bottom-left corner of the screen. The screen capture file is attached. However, this page has not been uploaded to a web-server; I intend to distribute these pages on a CD instead.

Please note that the 3 seconds shown within the attached file is actually an instantaneous value; this is a countdown timer whose initial value is 10 seconds. Evidently, it took 7 seconds for me to capture this image.

由pencilneck_geek于修改