Click here to Skip to main content
15,891,513 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I have embedded a flash on my Html Site as
<!-- embedding SWF -->
    <script type="text/javascript" src="Flash/swfobject.js"></script>
    <script type="text/javascript" src="Flash/swffit.js"></script>
    <script type="text/javascript">
        var flashvars = {};
        flashvars.xml_file = "flashmo_278_item_list_2.xml";
        var params = {};
        params.allowfullscreen = false;
       
        var attributes = {};
        attributes.id = "flashmo_template";
        attributes.name = "flashmo_template";
        swfobject.embedSWF("flashmo_278_dynamic_intro.swf", "flashmo_template", "532", "100", "9.0.0", false , flashvars, params, attributes);
        
    </script>

And setting the Flash in body as
<body>
<div id="flashmo_template"></div>
</body>

I am using ColorBox Signup form on Page Load. The overlay is hiding all the other Html components of the Page ,but the FLASH keeps floating over the Overlay. I googled and found the Solution to set the WMODE property of the FLAASH to TRANSPARENT.
But I am Unable to Understand How to Set the WMODE property of the FLASH. How I can set the Property of FLASH please assist. Thanks
Posted
Updated 7-May-14 21:18pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900