POMO-man 0 Posted January 4, 2008 Report Share Posted January 4, 2008 Weird, I'm working on a site at www.sharekalamazoo.com.In Firefox, this baby is gold.But, i had issues with the flash objects when I tried to put in a javascript fix in for IE (so, there won't need to be a click-activation in the latest IE version).Plus, in Safari, the objects are rendering at like 10%Anybody care to glimpse the code and see if I'm doing something wrong?Thank you! Quote Link to post Share on other sites
Synook 47 Posted January 5, 2008 Report Share Posted January 5, 2008 Not sure, but try adding two other <param>s <param name="width" value="1000"><param name="height" value="264"> Quote Link to post Share on other sites
POMO-man 0 Posted January 7, 2008 Author Report Share Posted January 7, 2008 Thanks, but that did not help. Any more ideas? Quote Link to post Share on other sites
POMO-man 0 Posted January 9, 2008 Author Report Share Posted January 9, 2008 Any body? Quote Link to post Share on other sites
justsomeguy 1,135 Posted January 9, 2008 Report Share Posted January 9, 2008 Here's your code vs. code that I know that works and displays the movie at 800x600: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" name="mainfeature" width="400" height="300" id="header"> <param name="movie" value="graphics/mainfeature.swf" /> <param name="quality" value="high" /> <embed src="graphics/mainfeature.swf" width="400" height="300" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="mainfeature"></embed> </object> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="shell" width="800" height="600" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="PwCShell.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <embed src="PwCShell.swf" quality="high" bgcolor="#ffffff" width="800" height="600" name="shell" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> You can try messing around with that to see if anything works, or else try to use something like SWFObject to put the Flash there. Quote Link to post Share on other sites
POMO-man 0 Posted January 11, 2008 Author Report Share Posted January 11, 2008 EXCELLENT, yep that done it. Thanks!Now, just need to figger out the click to activate script workaround for IE.You got clean code sitting around for that? i wasn't able to make any work. But, I'll look again. Quote Link to post Share on other sites
justsomeguy 1,135 Posted January 14, 2008 Report Share Posted January 14, 2008 If I remember right, I think this will work. If you have a div with an ID on it and the Flash movie inside there:<div id="flashmovie"><object ...</object></div>I think you can do this:document.getElementById("flashmovie").innerHTML = document.getElementById("flashmovie").innerHTML Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.