-
1. Re: Position Flash on HTML webpage
Roy Reed Apr 8, 2009 2:26 PM (in response to ninjamoo)It displays correctly in Firefox, but not in IE. Try replacing your current <object><embed> code block with this and see if it works:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=,8,0,0" width="591" height="190">
<param name="movie" value="somefilename.swf">
<param name="allowScriptAccess" value="sameDomain">
<param name="play" value="true">
<param name="loop" value="true">
<param name="scale" value="showall">
<embed src="somefilename.swf" width="591" height="190" play="true" loop="true" scale="showall" type="application/x-shockwave-flash" allowScriptAccess="sameDomain" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>Roy
-
2. Re: Position Flash on HTML webpage
ninjamoo Apr 8, 2009 10:53 PM (in response to Roy Reed)Hey Roy
Thanks, That Did it! You wouldnt happen to know how to disable the right click option on the .swf would you? I dont want users to be able to go to my site right click on the animation (swf file) and either zoom, loop, rewind, etc. I searched google and the forum and it comes up with html code to use, however, its not working for me.
Thx
Newbie
-
3. Re: Position Flash on HTML webpage
Roy Reed Apr 18, 2009 5:02 AM (in response to ninjamoo)You need to add this between the <object></object> tags
<param name="menu" value="false">
and this to the <embed> tag
menu="false"
Roy

