HighDots Forums  

Sound link

alt.html.tags alt.html.tags


Discuss Sound link in the alt.html.tags forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Philip WATTS
 
Posts: n/a

Default Sound link - 02-10-2004 , 04:37 AM






I am trying to put a simple sound to a link image. I have used the following
code, but every time the image is clicked the media player controls pop up
and have to be used to play the sound.

<a href="../../images/till.wav" hidden="true"><img
src="../../images/till.gif"></a>


What have I omitted?

Many thanks

Phil




Reply With Quote
  #2  
Old   
Will
 
Posts: n/a

Default Re: Sound link - 02-18-2004 , 03:20 AM






Philip WATTS wrote:
Quote:
I am trying to put a simple sound to a link image. I have used the following
code, but every time the image is clicked the media player controls pop up
and have to be used to play the sound.

a href="../../images/till.wav" hidden="true"><img
src="../../images/till.gif"></a


What have I omitted?

Many thanks

Phil




It's messy; but try using the <embed...> tag. Not too hot on it myself,
so try looking on http://www.webmonkey.com or elsewhere for it.

Also, you could try playing it with Javascript; which would be a neater
solution but may require you to change the format of the sound.

Sorry I can't help more, I've never needed to implement that.

Hang on....
Put THIS in between your <head> tags:

<script>

function Define_Sounds(){

VARIABLE_NAME = '../../images/till.wav'

}

function playSound(SOUND_NAME)
{
Define_Sounds()
eval(SOUND_NAME+".play(false)")
}

</script>


PUT THIS NEXT PART IN YOUR BODY:

<embed src="SOUND.wav" hidden=true autostart=false>

This will NOT SHOW ANYTHING VISIBLE on the page.


To PLAY the sound:

<a href="#" onClick="playSound('VARIABLE_NAME')"><img
src="../../images/till.gif"></a>


If you want the sound already playing, omit that link and change
auto-start in your embed tag to true


This is untested, but should work. Reply with any problems; good luck!

-Will


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.