1 replies
Can someone tell me the script or way to LOOP a short wav or mp3 or midi audio on my web page... I have Impact Web Audio & web audio Plus software & no where does it tell me to LOOP so it plays over & over Thanks
#audio #looping
  • Profile picture of the author jallen001
    Here are the tags you'll need. The BGSOUND SRC tag is for Internet Explorer, the Embed tag is for Netscape Navigator:

    <BGSOUND SRC="sound.wav" LOOP=INFINITE>
    <EMBED SRC="sound.wav" AUTOSTART="true" HIDDEN="true" LOOP="true">

    This will create an infinitely looping sound for both IE and Netscape.

    To create a sound that doesn't loop:

    <BGSOUND SRC="sound.wav" LOOP=0>
    <EMBED SRC="sound.wav" AUTOSTART="True" HIDDEN="True" LOOP="false">

    With the later versions of Internet Explorer, however, the above tag will give IE users two sound controls. To avoid that, add the NOEMBED and closing /NOEMBED tag around the BGSOUND SRC tag:

    <NOEMBED>
    <BGSOUND SRC="sound.wav" LOOP=0>
    </NOEMBED>
    <EMBED SRC="sound.wav" AUTOSTART="True" HIDDEN="True" LOOP="false">
    Signature

    SecretWebStash.com - Warriors-only downloads. Use RSVP code "Warriors".
    Register first, then while you are still logged in, paste into address bar: "http://www.secretwebstash.com/Default.aspx?rsvp=Warriors"

    www.pdmwebsolutions.com Web Hosting & Website Design - Riverside, CA

    {{ DiscussionBoard.errors[74587].message }}

Trending Topics