Sounds With Links - how do you do it?

free web hosting
Free Web Hosting > Computers & Tech > Designing > Web Design and HTML

Sounds With Links - how do you do it?

webdesignunlimited
I was wondering to myself the other day, "some websites, when you hover over one of their links, make a sound like a bleep or something. Wouldn't that be good to have". So, I want to know if anyone knows how to do it! biggrin.gif

Reply

PureHeart
QUOTE(webdesignunlimited @ Oct 8 2005, 07:35 PM)
I was wondering to myself the other day, "some websites, when you hover over one of their links, make a sound like a bleep or something. Wouldn't that be good to have". So, I want to know if anyone knows how to do it! biggrin.gif
*



Do you use Dreamweaver. In that program, we can make the browser to play a sound when user move their mouse on an object (there're many other events to choose from).

Another way to so if to use FLASH. This way is easier and should make fast loading site too.

Reply

webdesignunlimited
No, sorry, i don't use dreamweaver, i use frontpage sad.gif

Reply

Quatrux
I don't really like sounds in websites, but this is my personal taste and opinion, I think that people should be allowed to choose to use sounds or not.. smile.gif

Reply

Hercco
How it is done in DreamWeaver? Couild someome copy & paste some example code.

Reply

Houdini
Use Javascript for that kind of stuff. Here's some code for you:

CODE
<script language="JavaScript">
<!--
// Script Source:  www.CodeBrain.com

var audioOn = false;
function audioDo(doWhat,toWhat){
  if(audioOn){
     var A = eval('document.'+toWhat);
     if (A != null){
        if (doWhat=='stop') A.stop();
        else{
           if (navigator.appName == 'Netscape') A.play();
           else{
              if (document.M == null){
                 document.M = false; var m;
                 for(m in A) if (m == "ActiveMovie"){
                    document.M = true; break;
                    }
                 }
              if (document.M) A.SelectionStart = 0;
              if (document.M) A.play();
           }
        }
     }
  }
}

//-->
</script>


And here is a link to where it came from get the kit and you can play around with it till you get what you want, then all you need is to get a bunch of sounds to go with the events.

I used to do that with static web pages but am more into PHP and so forth. but hope that gets you started.

This script can be found in its entirety right at this link to sound kit
Look Almost all the way down the page and find the Essential Tricks category and look for the JavaScript Sound Download Kit and you should have more than you need to accomplish your task.

 

 

 


Reply

dijkiej
Before you add sounds to your links, think about your guests.
Do they like sounds?

You can ask them with a Poll on your website! smile.gif

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

Similar Topics

Keywords : sounds, links

  1. Creating Links With Quotes (")
    (2)
  2. To Display Images With Links In A Rotating Sequence Without Refreshing The Page!
    how to rotate images with links in a sequence automatically without ha (0)
    hai this is my first post and i really hope someone finds it useful. i was looking for this trick
    for long and finally found out today... to rotate images in your page automatically in a sequence
    without having to refresh the page. i find it particualry useful to highlight on the home page the
    various contents inside my site. Copied from
    http://www.cgiscript.net/cgi-script/csNews...6.5787238091439 QUOTE Step 1: place the code
    below between the and tags within the HTML page where you want the random banners to appear.
    CODE                           ....
  3. Applying Css Through Links.
    Different CSS through different links? (10)
    I work on a website, and on this there are three different colour schemes. These are currently
    selected by clicking on the desired colour in a flash shockwave object on a page. This requires
    that there are three large directories on the server, blue, pink and orange. Each one contains a
    coloured copy of the website. The things in each directory are: HTML pages, a css giving it
    it's colour and flash buttons that were coloured the three different colours when they were
    made. As you can imagine, this is a nightmare to update, as it requires that each page is copied t....
  4. Free Links Exchange: Promote & Increase Page Rank
    (9)
    Hi guys, For all the aspiring web-designer and webmasters out there - this deals with one of the
    most commonly overlooked fact about increasing your page rank. Most of us after putting up a new
    site, are satisfied with simple submitting our site to multiple search engines using some of the
    free submission engines. After that it's a long long wait till the crawlers come over to our
    page and starts indexing them. Even then it doesn't work out that well. And we always keep
    wondering WHY our sites don't show up on higher ranks on search engines. One of the p....
  5. Find Out Dead Links In Your Site Automatically
    Want to see a dead link on your site? (11)
    If you try to go to http://www.dead-links.com you will be asked for your domain or url. Enter it
    and the bot will find any dead links that you might not have seen. Have a nice day.......
  6. How To Put Sounds?
    (19)
    hei can anyone tell me how to put sounds in HTML page.. plz tell me full script or coding thnx....

    1. Looking for sounds, links






*SIMILAR VIDEOS*
Searching Video's for sounds, links
advertisement




Sounds With Links - how do you do it?