Click to See Complete Forum and Search --> : Image overlib dissapears under flash movie
Solar
03-18-2007, 12:38 PM
Hi all,
I have some thumbnail images on my page, when you mouse over the images an overlib pops up with the full image. Not far above the thubmnails is a flash header, when the overlib images pop up part of them is going underneath the flash movie.
Any ideas on how I can prevent this?:confused: :confused:
Thanks a lot for any help with this.
yodasw16
03-19-2007, 01:53 PM
what code are you using to embed the flash header? You should be able to change the wmode parameter to transparent and it should solve the problem. Here is what it would look like in the basic way that flash gives you to embed the .swf [ !!! added before and after the 2 spots in the code that you would need to add] :
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="468" height="200" id="page_header">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="page_header.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
!!! <param name="wmode" value="transparent" /> !!!
<embed src="page_header.swf" quality="high" bgcolor="#ffffff" width="470" height="385" name="boxoffice" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" !!! wmode="transparent" !!! pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
Solar
03-20-2007, 04:10 AM
Thanks a lot yodasw16. That did the trick, just what I was looking for.
Cheers!!!!!:) :)