Oct 29, 2003 #1 PixelDiva Programmer Jul 1, 2003 22 US How do I, or can I, apply a sound effect to a Hover button or hyperlink in FrontPage?
Oct 31, 2003 #2 CoreyBryant Programmer Sep 4, 2001 616 US In the <HEAD: <script language=Javascript> function soundOne() { document.all.sound1.src = "sounds/button.au"} </script> <bgsound id="sound1"> And then in your hyperlink: <a href="artists/" OnMouseOver="soundOne()">Artists</a> __________________________ Corey http://www.merchantaccounts4less.com Upvote 0 Downvote
In the <HEAD: <script language=Javascript> function soundOne() { document.all.sound1.src = "sounds/button.au"} </script> <bgsound id="sound1"> And then in your hyperlink: <a href="artists/" OnMouseOver="soundOne()">Artists</a> __________________________ Corey http://www.merchantaccounts4less.com
Nov 2, 2003 Thread starter #3 PixelDiva Programmer Jul 1, 2003 22 US Thanks for the help with this. Upvote 0 Downvote