A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Flash displaing over Sticky header

Hybrid View

  1. #1
    Registered User
    Join Date
    Jun 2012
    Posts
    1

    Flash displaing over Sticky header

    I am having an odd problem I have not seen before and cant seem to find any help on.

    I have a page www.CBGDD.com/gtm with a sticky header and a staticly embed swf using the latest versions of Google's swfobject http://code.google.com/p/swfobject/.

    It behaves as I want it to on my mac side using firefox, chrome, and safari, but dose not work properly on any browser with windows.

    When you scroll down the header should stay on top with the content going behind it, as it dose on the gallery page. But instead the swf jumps on top of the header.

    I have tried to fix this using x-index but that dose not work. It dose this whether it is embedded staticly or dynamically.

    Dose anyone know how to fix this or what might be causing this behavior?

  2. #2
    Senior Member
    Join Date
    Sep 2010
    Posts
    324
    There is no Flash at all displaying in IE for me.
    Most likely because this line is an invalid <param>
    Code:
    <param name="classid" value="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" />
    Couple of options... use the correct object syntax in the first <object>
    Code:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1024" height="428">
    <param name="movie" value="videos/GTM_Slideshow.swf" />
    <param name="wmode" value="transparent" />
    <!--[if !IE]>-->
    or get rid of ALL the IE conditional stuff ....<!--[if !IE]>-->, etc.
    and just use the one <object>
    Code:
    <object type="application/x-shockwave-flash" data="videos/GTM_Slideshow.swf" width="1024" height="428">
    <param name="movie" value="videos/GTM_Slideshow.swf" />
    <param name="wmode" value="transparent" />
    </object>
    Best wishes,
    Video Man

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center