via PayPal / credit card
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
I have read through and through the forums here and the manual to disable both of these variables.
Currently, it seems, I can only disable one or the other. I have both code lines in, set to false to not display them. If you take a look on my site, the logo displays when loading, however, the right click registration info has gone (like it should, but the logo hasn't) http://www.cornishwebsolutions.co.uk/beta
EDIT: Further info: I have cleared my browser cache, restarted my computer several times, and that still doesnt affect the changes. I have also tested this on another machine, and it still doesnt work.
The code I am using is pasted below. It is really strange, but also frustrating at the same time. Any hints and tips would be very much apreciated.
<script type="text/javascript">
var flashvars = {showLogo: "false"};
var flashvars = {showRegistration: "false"};
var params = {wmode: "transparent"};
var attributes = {bgColor: "09548e"};
swfobject.embedSWF("slideshow/monoslideshow.swf", "flashContent",
"310", "187", "9", false,
flashvars, params, attributes);
</script>
I look forward to hearing from some of you.
Cheers,
Thomas.
You need to change
var flashvars = {showLogo: "false"};
var flashvars = {showRegistration: "false"};
into
var flashvars = {showLogo: "false", showRegistration: "false"};
...that's it.
Christoph
Thank you, thank you, thank you. That worked a treat!
Thanks again.
I'm having the same issue but for my code I've used Christoph's version from another post where the bulk of the code has been taken out of the header and put into the div.
I have tried a number of 'guesses' to no avail. What I have is:
<div id="feature_flash">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="670" height="330" id="viewport">
<param name="movie" value="flash/monoslideshow.swf" />
<param name="base" value="slideshow_01/" />
<param name="flashvars" value="showLogo=false", "showRegistration=false" />
<param name="bgcolor" value="#fff" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="flash/monoslideshow.swf" width="670" height="330">
<param name="base" value="slideshow_01/" />
<param name="flashvars" value="showLogo=false" />
<param name="bgcolor" value="#fff" />
<!--<![endif]-->
<h1>Alternate content</h1>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div><!--feature_flash-->
Any ideas on how to turn both Logo and Registration 'off' would be appreciated. Thanks.
Aud
You omitted changing the calling parameters in the middle of the block as well. Change that and you should be done (They are there once for IE and once for all other browsers).
Christoph
this doesnt work for wordpress, can you provide a solution please?
param name="flashvars" value="showLogo=false", "showRegistration=false" />
<param name="bgcolor" value="#fff" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="flash/monoslideshow.swf" width="670" height="330">
<param name="base" value="slideshow_01/" />
<param name="flashvars" value="showLogo=false" />
the above is copied from your code. You are saying that adding
"showRegistration=false" to the last line of the code I copied doesn't work??????
Does anybody have a solution to the question that hey_design asked at all? I've got the same code as him/her and need the same help please?
Adam
This is the code I have...
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="600" hspace="0" vspace="0" id="FlashID" title="Digital Artworx Gallery">
<param name="movie" value="monoslideshow.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="flashvars" value="showRegistration=false" />
<param name="swfversion" value="6.0.65.0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object data="monoslideshow.swf" type="application/x-shockwave-flash" width="800" height="600" hspace="0" vspace="0">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<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" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
1 to 9 of 9