Hello all,
I am working on a website that runs on a server with HTTPS. I recently added a flash animation to one of the pages and now when I view that page in IE, I get that well-known "this page contains secure and non-secure items" warning. Even if I click "No" to not show the non-secure items the animation still plays correctly, but the warning is annoying and I would like to get rid of it. This is the markup I used to embed the animation:
HTML Code:
<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="600" height="200">
<param name="movie" value="flash/LogIn.swf" />
<param name="quality" value="high" />
<embed src="flash/LogIn.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="600" height="200"></embed>
</object> Is this happening because of the macromeda.com addresses in the
codebase and
pluginspage attributes, and if so, is there any way around this?
Thanks in advance for any help.