Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Java on top of Flash. (See related posts)

// Allows DHTML and JS menus to load on top of flash objects while checking for installed player.

   1  
   2  
   3  <script type="text/javascript">
   4  var so = new SWFObject("FLASHOBJECT.swf", "gallery", "271", "206", "6", "#ffffff");
   5  so.addParam("wmode", "transparent");
   6  so.write("FLASHOBJECTCONTAINERDIV");
   7  </script>
   8  

Comments on this post

Greggbert posts on Feb 15, 2007 at 20:32
Hopefully you meant the title to be "JavaScipt on top of Flash" and not "Java on top of Flash".

You need to create an account or log in to post comments to this site.


Click here to browse all 5556 code snippets

Related Posts