via PayPal / credit card
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
We have a commercial site with an issue. Previously we have been able to hide the registration info with v1 and an old version of swfobject.
We have got it working on http://www.specialflowers.co.nz apart from the registration but this is via our old swfobject code and this doesn't allow us to hide the registration information.
Here is the problem site ...
http://wellington.specialflowers.co.nz. On this site we have utilised the new version of swobject and your code verbatim but noticeably the icon and the rego info is still showing even though we have followed it to the letter. I have checked it many times but it still remains an issue.
Please advise as this is holding up our clients upgrade.
Many thanks in advance
Peter Hatherley
Hi to the other side of the Earth,
your problem is simple to solve.
Instead of
var flashvars = {showLogo: "false"};
var flashvars = {showRegistration: "false"};
var flashvars = {};
you should try
var flashvars = {showLogo: "false", showRegistration: "false"};
What your code effectively does is assign one value to flashvars, then another, and finally and empty one.
Hope this helps,
Christoph
Thanks Christoph .. very much appreciated
Kind regards Peter
I'm having a similar problem but my code is completely different. I've used Dreamweaver CS4 so that I could put the SWF file into a table (not very good with CSS/PHP etc).
The way Dreamweaver has put the code together is totally different. I get this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="500" id="FlashID" title="Digital Artworx Gallery">
<param name="movie" value="monoslideshow.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<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 type="application/x-shockwave-flash" data="monoslideshow.swf" width="800" height="500">
<!--<![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>
How would I tell Dreamweaver that I don't want to show the registration information?
Adam
You simply add
<param name="flashvars" value="showRegistration=false" />
twice into your code (where the other parameters are).
While you're at it, you should change the swfversion value to 10.0.0.0, as Monoslideshow won't show at all with version 6.
Christoph
Yeah... just figured that bit! I'd put the code into the IE parameters and was testing it with Firefox!!!
Thanks mate, much appreciated!
I'll sleep well tonight now :)
1 to 6 of 6