Results 1 to 3 of 3

Thread: On MouseOver/Click Play sound?

  1. #1

    Thread Starter
    Addicted Member Ramandeep's Avatar
    Join Date
    Feb 2000
    Posts
    158

    Question On MouseOver/Click Play sound?

    Hi, how can I play a sound when a user moves his/her mouse over a link on my website. I'm already using a ONMOUSEOVER for a rollover. Is it possible to add two ONMOUSEOVERs?

    How can I play the sound when the link is clicked?

  2. #2
    Fanatic Member Wynd's Avatar
    Join Date
    Dec 2000
    Location
    In a bar frequented by colossal death robots
    Posts
    772
    Script:
    Code:
    function playSound(SName)
    {
      if (document.embeds[SName] != null && document.embeds[SName].IsReady())
      {
        document.embeds[SName].play(false)
      }
    }
    Link:
    Code:
    <a href="somewhere.html" onMouseOver="playSound('snd1');otherMouseOver()">
    You also need to put this on your page:

    Code:
    <embed src="snd1.wav" name="snd1" hidden="true" loop="false" autostart="false">
    Edit: Doesn't seem to work in IE, i got it from http://www.chalcedony.com/.
    Alcohol & calculus don't mix.
    Never drink & derive.

  3. #3
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    IE 4+

    Taken from http://www.javascriptcity.com

    Code:
    <EMBED SRC="sound_file_name.wav" autostart="false" hidden="true">
    <SCRIPT language="JavaScript">
    <!--
    function playHome() 
    {
    if (document.all)
     {
      document.all.sound.src = "sound_file_name.wav";
     }
    }
    //-->
    </SCRIPT>
    <bgsound id="sound">
    Put your mouse on the link to hear a sound
    <A HREF="http://yoursite.com/page.html" onMouseover="playHome()">HERE</A>

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width