-
AuthorPosts
-
npatris Friend
npatris
- Join date:
- April 2011
- Posts:
- 53
- Downloads:
- 0
- Uploads:
- 6
- Thanks:
- 16
- Thanked:
- 2 times in 1 posts
May 17, 2011 at 9:52 am #164091Hi,
I have a problem in my web site http://ecogourmetselection.com. When I open my mega menu in “quienes somos”, the box is going behind my logo, who is a flash wrapper.
It´s going well with mozilla and safari, but wrong with IE and Google Chrome.
Do you have an idea to resolve this problem?
Thanks a lot.chavan Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
May 17, 2011 at 2:14 pm #391636GO to this File : http://ecogourmetselection.com/images/flashbanner/deploy/index.html
Replace the Following
<object width="1000" height="600" type="application/x-shockwave-flash" data="abrmain.swf" id="myContent" style="visibility: visible;">
<param name="bgcolor" value="#ffffff">
<param name="allowFullScreen" value="true">
<param name="scale" value="noscale">
<param name="allowScriptAccess" value="always">
<param name="swLiveConnect" value="true">
<param name="flashvars" value="xml=xml/abrMain.xml">
</object>With
<object width="1000" height="600" type="application/x-shockwave-flash" data="abrmain.swf" id="myContent" style="visibility: visible;" wmode="transparent" >
<param name="bgcolor" value="#ffffff">
<param name="wmode" value="transparent">
<param name="allowFullScreen" value="true">
<param name="scale" value="noscale">
<param name="allowScriptAccess" value="always">
<param name="swLiveConnect" value="true">
<param name="flashvars" value="xml=xml/abrMain.xml">
</object>
Note: If you Find my Post useful please click on the Thanks Iconnpatris Friendnpatris
- Join date:
- April 2011
- Posts:
- 53
- Downloads:
- 0
- Uploads:
- 6
- Thanks:
- 16
- Thanked:
- 2 times in 1 posts
May 17, 2011 at 2:45 pm #391642Hi, thanks a lot to help me.
in my index.html, I have this code:<script type=”text/javascript” src=”js/swfobject.js”></script>
<script type=”text/javascript”>
var flashvars = {xml: “xml/abrMain.xml”};
var params = {
bgcolor : “#ffffff”,
allowFullScreen : “true”,
scale :”noscale”,
allowScriptAccess : “always”,
swLiveConnect : “true”
};
var attributes = {};
swfobject.embedSWF(“abrmain.swf”, “myContent”, “1000”, “600”, “9.0.0”, “js/expressInstall.swf”, flashvars, params, attributes);
</script>
<style type=”text/css”>
html, body, div {
height: 100%;
overflow: hidden;
}
body {
background: #333333;
font: 86% Arial, sans-serif;
margin: 0;
}
#main {
height: 100%;
}
</style>
</head>
<body bgcolor=”#ffffff”><div id=”myContent”>
<h1>Alternative content</h1>
<p><a href=”http://www.adobe.com/go/getflashplayer”><img src=”http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif” alt=”Get Adobe Flash player” /></a></p>
</div>
</body>
</html>I just write this line after allowFullScreen : “true”,:
wmode : “transparent”,
but nothing change (and with mozilla firefox now I have a grey box too…).May I have to do something more or change completely my code?
Thanks.pastorbill Friendpastorbill
- Join date:
- October 2007
- Posts:
- 52
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 16
- Thanked:
- 2 times in 1 posts
May 20, 2011 at 10:36 pm #392176I use firefox, chrome, and ie. They all look right to me.
chavan Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
May 21, 2011 at 3:36 am #392185Replace the Following code with the one in your html
<script type="text/javascript">
var flashvars = {xml: "xml/abrMain.xml"};
var params = {
bgcolor : "#ffffff",
allowFullScreen : "true",
scale :"noscale",
allowScriptAccess : "always",
swLiveConnect : "true",
wmode : "transparent"
};
var attributes = {};
swfobject.embedSWF("abrmain.swf", "myContent", "1000", "600", "9.0.0", "js/expressInstall.swf", flashvars, params, attributes);
</script>1 user says Thank You to chavan for this useful post
-
AuthorPosts
This topic contains 5 replies, has 3 voices, and was last updated by chavan 13 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum