Hey guys,
I have a problem with my code. It is an MP3 player that I need on my website. Everything should be working fine, but there is 1 problem: The MP3 player starts automaticly while I DO have the autoStart function in my HTML.
Here's my HTML
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BLALALABLABLALAB - Official Site</title>
<link href="Style.css" rel="stylesheet" type="text/css" />
</head>
<div id="Wrapper">
This website is under construction.
<table width="100%" border="0">
<tr>
<td align="center"><img src="860854969_5_4Xl2.jpg" width="500" height="497" alt="BLABLALABAL" /></td>
</tr>
</table>
<script language="JavaScript" src="C:BLABLABLA\mp3Player.swf"></script>
<object type="application/x-shockwave-flash" data="C:BLABLABLA\mp3Player.swf" id="audioplayer1" height="100" width="300">
<param name="movie" value="C:BLABLABLA\mp3Player_black.swf">
<param name="FlashVars" value="playerID=audioplayer1&soundFile=C:BLABLABLA\Set To Fail.mp3">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent">
<param name='autoStart' value="false">
</object>
</div>
<body>
</body>
</html>
And this is my MP3 player XML
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<music autoPlay="false">
<song>
<title><![CDATA[Set To Fail]]></title>
<mp3File><![CDATA[BLABLA\Set To Fail.mp3]]></mp3File>
</song>
</music>
Please help me I really need this.