View Full Version : please help


crazygrl
05-19-2003, 02:38 PM
This is the code i used to make an embed source for my music:
<embed src="splashsong.MP3" width=25 height=25 autostart=true repeat=true loop=true>

And this is the code i used for the thumbnails that doesn't work either:
<a href="address"><img src="image1. jpg)" border="0" width="000" height="000" alt="image#1"></a>
~thank you for helping~

amicus
05-19-2003, 04:39 PM
both look ok, the link is working and the embed looks like you need to close the tag. if you don't have the correct codec music won't play at all.


<embed src="splashsong.mp3" autostart="true" repeat="true" loop="true"></embed>

<a href="address"><img src="image1.jpg" width="25" height="25" border="0" alt="image#1"></a>

Stormx
05-19-2003, 06:06 PM
Check that the mp3 file is called that exact thing, it is case sensitive. And another note:

<embed> does not need a closing tag exept when it contains the <noembed> tag. This does have a closing tag and is used for browsers that do not support <embed> (NS 1 and IE 1+2)

crazygrl
05-19-2003, 08:45 PM
I finally realized what was wrong with my codes (they were in the wrong place!) thanks to those who helped