3 Apr 2007, 9:23 AM
New Zenner
- Join Date:
- Aug 2006
- Location:
- London
- Posts:
- 53
- Plugin Contributions:
- 0
Non Secure Items [Flash] in IE Quick Fix
Hi all
If you do a quick fix in the flash fetch code, you can remove that error.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="550" height="200" title="introthai2new">
<param name="movie" value="introthai2new.swf">
<param name="quality" value="high">
<embed src="introthai2new.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="550" height="200"></embed>
</object>
Above
Normal code [obviously you would need your flash id and your .swf file address in].
And below fix code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id=" introthai2new " width="550" height="200">
<param name="movie" value="introthai2new.swf">
<param name="quality" value="high">
<param name="allowscriptaccess" value="samedomain">
<embed type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
width="550" height="200"
name=" introthai2new " src="introthai2new.swf "
quality="high"
swLiveConnect="true" allowScriptAccess="samedomain"
></embed>
</object>
Hope this helps and makes sense.
Can see here