Results 1 to 2 of 2

Thread: Wmode Transparent

  1. #1
    Join Date
    Jan 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Wmode Transparent

    I have posted this question before about the issue with DD Smooth Menu working in Internet Explorer, Chrome and Safari and Flash. I thought that i had resolved the issue however, I have not. I have posted below the script for my .swf file on the website http://coreydamenjenkins.com

    Please help me figure out what my issue is here:
    Code:
     
    <div id="index">
          <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','900','height','445','title','construction','base','.','src','http://coreydamenjenkins.com/index/slideshow/slideshow','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://coreydamenjenkins.com/index/slideshow/slideshow' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="900" height="445" title="construction">
    <param name="wmode" value="transparent" />
    <param name="movie" value="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" />
    <param name="quality" value="high" />
    <embed src="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="900" height="445"></embed>
          </object></noscript>
      </div>
    Thank you,
    Dan

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    It needs 'wmode','transparent', in the AC_FL_RunContent function:

    Code:
    <div id="index">
          <script type="text/javascript">
    AC_FL_RunContent( 'wmode','transparent','codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','900','height','445','title','construction','base','.','src','http://coreydamenjenkins.com/index/slideshow/slideshow','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://coreydamenjenkins.com/index/slideshow/slideshow' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="900" height="445" title="construction">
    <param name="wmode" value="transparent" />
    <param name="movie" value="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" />
    <param name="quality" value="high" />
    <embed src="http://coreydamenjenkins.com/index/slideshow/slideshow.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="900" height="445"></embed>
          </object></noscript>
      </div>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

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