Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Flash stays on top of Lightbox layer?
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Flash stays on top of Lightbox layer?
#12322
Flash stays on top of Lightbox layer? 13 Years, 1 Month ago Karma: 0
How can I move the lightbox layer above the flash clip? see link. Thank you.

Tony
The administrator has disabled public write access.
 
#12327
Re:Flash stays on top of Lightbox layer? 13 Years, 1 Month ago Karma: 747
Hello,

This is a problem with Flash object HTML code, add wmode="transparent" attribute to <OBJECT> tag. Currently code looks like:

Code:


<object width="230" height="340" type="application/x-shockwave-flash" data="http://portsina.com/Joomla1/images/MIS_Video/AlbumTemplateDemoC.swf" id="AlternativeContent" style="visibility: visible;"></object>



replace it with:

Code:


<object width="230" height="340" type="application/x-shockwave-flash" data="http://portsina.com/Joomla1/images/MIS_Video/AlbumTemplateDemoC.swf" id="AlternativeContent" style="visibility: visible;" wmode="transparent"></object>



Regards,
ARI Soft
The administrator has disabled public write access.
 
#12330
Re:Flash stays on top of Lightbox layer? 13 Years, 1 Month ago Karma: 0
Following is the code I used, flash still stays on top of the lightbox. ??
Code:

    <script src="http://www.memoryimprintstudio.com/swfobject.js" type="text/javascript"> </script>                         
                                     <script type="text/javascript">  
                                      var params = {}; 
                                      params.wmode = "transparent";    
                                     params.visibility="true"; swfobject.embedSWF("http://portsina.com/Joomla1/images/MIS_Video/AlbumTemplateDemoC.swf", "AlternativeContent", "230", "340", "8.0.0", params);
                                    </script>


Thanks, Tony
The administrator has disabled public write access.
 
#12332
Re:Flash stays on top of Lightbox layer? 13 Years, 1 Month ago Karma: 747
It is incorrect code. Use the next:

Code:


<script src="http://www.memoryimprintstudio.com/swfobject.js" type="text/javascript"></script>                         
<script type="text/javascript">  
swfobject.embedSWF("http://portsina.com/Joomla1/images/MIS_Video/AlbumTemplateDemoC.swf", "AlternativeContent", "230", "340", "8.0.0", null, null, {"wmode": "transparent"});
</script>



Regards,
ARI Soft
The administrator has disabled public write access.
 
#12335
Re:Flash stays on top of Lightbox layer? 13 Years, 1 Month ago Karma: 0
Thanks, now it is working. Tony
The administrator has disabled public write access.
 
Go to topPage: 1