PDA

View Full Version : flash - remove logo


thaKing
Oct-23-2009, 09:42 PM
how do i remove the SM logo along the top of the flash navigation here:
http://www.jeremyking.com/Holidays/4x8-Christmas-Cards/

i have <param name="showLogo" value="false"> set in the code, but it's still showing...

Allen
Oct-24-2009, 08:43 AM
how do i remove the SM logo along the top of the flash navigation here:
http://www.jeremyking.com/Holidays/4x8-Christmas-Cards/

i have <param name="showLogo" value="false"> set in the code, but it's still showing... I think you have to add these into the emded to work.

<div align="center">
<object height="400" width="600">
<param name="movie" value="http://www.smugmug.com/ria/ShizamSlides-2007090601.swf">
<param name="flashvars" value="AlbumID=10063071&amp;AlbumKey=JfdD7&amp;transparent=true&amp;c rossFadeSpeed=500">
<param name="wmode" value="transparent">
<param name="bgcolor" value="000000">
<param name="allowNetworking" value="all">
<param name="allowScriptAccess" value="always">
<param name="showLogo" value="false">
<embed src="http://www.smugmug.com/ria/ShizamSlides-2007090601.swf" flashvars="AlbumID=10063071
&amp;AlbumKey=JfdD7
&amp;showLogo=false
&amp;transparent=true
&amp;crossFadeSpeed=500"
wmode="transparent" type="application/x-shockwave-flash" allowscriptaccess="always" allownetworking="all" showlogo="false" height="400" width="600">
</object>
</div>

thaKing
Oct-24-2009, 08:46 AM
here's the code i have, notice the showLogo=false is both in the param and embed statements:

<html>
<div align="center">
<object height="400" width="600">
<param name="movie" value="http://www.smugmug.com/ria/ShizamSlides-2007090601.swf">
<param name="flashvars" value="AlbumID=10063071&AlbumKey=JfdD7&transparent=true&crossFadeSpeed=500">
<param name="wmode" value="transparent">
<param name="bgcolor" value="000000">
<param name="allowNetworking" value="all">
<param name="allowScriptAccess" value="always">
<param name="showLogo" value="false">
<embed src="http://www.smugmug.com/ria/ShizamSlides-2007090601.swf" flashvars="AlbumID=10063071&AlbumKey=JfdD7&transparent=true&crossFadeSpeed=500"
wmode="transparent" type="application/x-shockwave-flash" allowScriptAccess="always" allowNetworking="all"
showLogo="false"
height="400" width="600"></embed></object>
</div>
</html>

Allen
Oct-24-2009, 09:02 AM
here's the code i have, notice the showLogo=false is both in the param and embed statements:

<html>
<div align="center">
<object height="400" width="600">
<param name="movie" value="http://www.smugmug.com/ria/ShizamSlides-2007090601.swf">
<param name="flashvars" value="AlbumID=10063071&AlbumKey=JfdD7&transparent=true&crossFadeSpeed=500">
<param name="wmode" value="transparent">
<param name="bgcolor" value="000000">
<param name="allowNetworking" value="all">
<param name="allowScriptAccess" value="always">
<param name="showLogo" value="false">
<embed src="http://www.smugmug.com/ria/ShizamSlides-2007090601.swf" flashvars="AlbumID=10063071&AlbumKey=JfdD7&transparent=true&crossFadeSpeed=500"
wmode="transparent" type="application/x-shockwave-flash" allowScriptAccess="always" allowNetworking="all"
showLogo="false"
height="400" width="600"></embed></object>
</div>
</html>

Add it in like I showed in the embed using a &amp; All the added params go in like this.

....&amp;AlbumKey=JfdD7&amp;showLogo=false&amp;transparent=tru e....

thaKing
Oct-24-2009, 09:18 AM
i copied your code and pasted it in - still there...

jfriend
Oct-24-2009, 09:24 AM
You know - if you're embedding a slideshow in your own Smugmug page, it's a whole lot easier to just use the javascript code (http://wiki.smugmug.net/display/SmugMug/Flash+Slideshow) from the homepage slideshow rather than all this arcane embedding code. It gives you nice easy control over all the parameters and this issue you are having is not a problem there. It also has the advantage that it will inherit newer versions of the flash code whereas the embedded slideshow is hard-coded to use the version that is live now and will never upgrade, get bug fixes, get new features, etc...

thaKing
Oct-24-2009, 10:04 AM
used the JS code and got it working...thanks!