Is there some sort of html "delay code" to delay an auto-starting music player?

  • Thread starter Thread starter Andrew
  • Start date Start date
A

Andrew

Guest
I want to delay my music player from starting at the same time a video does. Can you tell me the code and where to put it at in the music player's code? Thanks!!
Here is the code:


<div style="width:300px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="110" width="300">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://media.imeem.com/m/86nSNuZ-7a" />
<param name="wmode" value="transparent" />
<embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://media.imeem.com/m/86nSNuZ-7a" height="110" width="300" wmode="transparent" />
</object><div style="background-color:#E6E6E6;padding:1px;"></a></div><form method="post" style="margin:0;padding:0;"><div style="padding-top:0px;"></a></a></div></form></div></div><br /><a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LmltZWVtLmNvbS9kc21pdGg3Nzc5My9tdXNpYy9fOTRQOVJPZy9kYXZpZC1heGVscm9kLWRhdmlkLW1jY2FsbHVtLXRoZS1lZGdlLw=="> </a>
 
HTML can't do this. But, Javascript can.

http://www.w3schools.com/js/js_timing.asp
http://www.javascriptf1.com/tutorial/javascript-timeout.html
http://www.elated.com/articles/javascript-timers-with-settimeout-and-setinterval/
 
HTML can't do this. But, Javascript can.

http://www.w3schools.com/js/js_timing.asp
http://www.javascriptf1.com/tutorial/javascript-timeout.html
http://www.elated.com/articles/javascript-timers-with-settimeout-and-setinterval/
 
Back
Top