View Single Post
Brando Brando is offline
Burn the fire.
 
Brando's Avatar
 
Join Date: May 2003
Location: Land of Liberty, NH
Posts: 6,501
Garage
Not working in IE?

Put all of your variables in the object tag into quotes. Make sure the source matches in the Object and Embed tags. Also, you're missing param tags. Try this:

HTML Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="310" height="24" id="audioplayer2" align="middle">
	<param name="allowScriptAccess" value="sameDomain" />
	<param name="allowFullScreen" value="false" />
	<param name="wmode" value="transparent">
	<param name="movie" value="MP3/player.swf" />
	<param name="quality" value="high" />
	<param name="bgcolor" value="#000000" />
	<embed name="audioplayer2" src="MP3/player.swf" width="310" height="24" align="middle" autostart="false" pluginspage="http://www.adobe.com/go/getflashplayer" quality="high" allowscriptaccess="sameDomain"></embed>	
</object>
And, if you are just embedding a straight MP3 file:

HTML Code:
<OBJECT DATA="MP3/zz.mp3" TYPE="audio/mpeg" width="310" height="24" id="audioplayer2" align="middle">
	<PARAM NAME="autostart" VALUE="false" />
	<PARAM NAME="hidden" VALUE="false" />
	<EMBED src="MP3/zz.mp3" autostart="false" hidden="false" width="310" height="24" id="audioplayer2" align="middle"></EMBED>
</OBJECT>
__________________
[x] Working | [_] Broken: 2017 Victory Octane
[x] Working | [_] Broken: 2005 Ram 1500 SLT w/5.7L Hemi

"Drive it like you stole it."

Last edited by Brando; 01-11-2011 at 08:26 PM..
Old 01-11-2011, 07:59 PM
  Pelican Parts Catalog | Tech Articles | Promos & Specials    Reply With Quote #10 (permalink)