Topic: Valid Flash code doesn't work in IE? (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: Kansas City, MO , USA |
posted 05-30-2005 03:19
My problem this time is I am trying to post a flash file (mp3.swf), it works in firefox, but not IE... Any ideas? code: <li> <h2><?php _e('Music Time'); ?></h2> <ul id="music"> <li style="text-align:center;"> <strong>CKY</strong>/96 Quite Bitter Things<br /> <object data="music/mp3.swf" width="24" height="17" type="application/x-shockwave-flash"> <param name="type" value="application/x-shockwave-flash" /> <param name="src" value="music/mp3.swf" /> <param name="data" value="music/mp3.swf" /> <param name="codebase" value="music/mp3.swf" /> <param name="FlashVars" value="TheSound=music/cky.mp3" /> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="music/mp3.swf" /> <param name="loop" value="false" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> </object> </li> </ul> </li>
|
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 05-30-2005 10:29
last time I looked, you needed an <embed> tag for IE. |
Paranoid (IV) Mad Scientist From: Omicron Persei 8 |
posted 05-30-2005 11:46
isn't the song called "96 Quite Bitter Beings" btw? |
Paranoid (IV) Inmate From: Florida |
posted 05-30-2005 18:50
last time I checked, just the object with data & param for file path worked fine in both |
Paranoid (IV) Inmate From: Florida |
posted 05-30-2005 19:07
ya, just remove these: code: <param name="src" value="music/mp3.swf" /> <param name="data" value="music/mp3.swf" /> <param name="codebase" value="music/mp3.swf" />
|
Bipolar (III) Inmate From: Kansas City, MO , USA |
posted 05-31-2005 01:07
Thanks Reisio, that did the trick! |