via PayPal / credit card
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Is it possible to pass flashvars to monoslideshow using the static way of embedding?
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="630" height="186">
<param name="movie" value="/public/slideshow/top/monoslideshow.swf" />
<!--[if !IE]>-->
<object width="630" height="186" type="application/x-shockwave-flash" data="/public/slideshow/top/monoslideshow.swf">
<!--<![endif]-->
</object>
<p>Alternative content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
Yes of course.
Just place
<param name="flashvars" value="showLogo=false" />
(or whatever you want to set) twice into the code: Once directly below your "movie" parameter, once in front of the first endif.
Christoph
Great, works perfectly, thanks!
Spoke too soon, for some reason only the alternative content is shown in IE7 or IE8 with this code
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="530" height="186">
<param name="movie" value="/public/slideshow/top/monoslideshow.swf" />
<param name="flashvars" value="showLogo=false" /> <!--[if !IE]>-->
<object width="530" height="186" type="application/x-shockwave-flash" data="/public/slideshow/top/monoslideshow.swf">
<param name="flashvars" value="showLogo=false" />
<!--<![endif]-->
</object>
<p>Alternative content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
The first </object> is wrong.
The last lines need to be:
<!--<![endif]-->
<p>Alternate content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
Christoph
Thanks, I must have messed things up cutting and pasting, it now shows in IE...BUT...it crashes it on transition from first to second image, does the same to Chrome too. To add to my frustration I can't hide registration.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="530" height="186">
<param name="movie" value="/public/slideshow/top/monoslideshow.swf" />
<param name="flashvars" value="showLogo=false","showRegistration=false" />
<!--[if !IE]>-->
<object width="530" height="186" type="application/x-shockwave-flash" data="/public/slideshow/top/monoslideshow.swf">
<param name="flashvars" value="showLogo=false","showRegistration=false" />
<!--<![endif]-->
<p>Alternative content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
<!--
Monoslideshow 2.0 configuration file
Please visit http://www.monoslideshow.com for more info
-->
?
<album thumbnail="slideshow/top/albumThumbnail.jpg" itemPath="slideshow/top/images" thumbnailPath="slideshow/top/thumbnails">
?
<configuration>
<transition kenBurnsMode="none"/>
<transition easing="easeInOut"/>
<transition direction="leftToRight"/>
<transition size="0.1"/>
<transition strength="0.1"/>
<transition time="0.5"/>
<transition type="blend"/>
<caption displayMode="never"/>
<controller type="none"/>
<image delay="2"/>
</configuration>
?
<contents>
<image source="ss001-01.png" title="title 1" description="1"/>
<image source="ss001-02.png" title="title 2" description="2"/>
<image source="ss001-03.png" title="title 3" description="3"/>
<image source="ss001-04.png" title="title 4" description="4"/>
</contents>
</album>
Please post a link to your test page.
Christoph
Sorry for late reply. I removed all but the most basic of configurations in the XML file and it no longer crashes Chrome so I will will put them back one by one and see where I went wrong.
All ok now other than not being able to hide registration and logo.. any idea why this won't work?
<div id="idx-news-image">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="530" height="186">
<param name="movie" value="/public/slideshow/top/monoslideshow.swf" />
<param name="flashvars" value="showLogo=false","showRegistration=false" /> <!--[if !IE]>-->
<object width="530" height="186" type="application/x-shockwave-flash" data="/public/slideshow/top/monoslideshow.swf">
<param name="flashvars" value="showLogo=false","showRegistration=false" />
<!--<![endif]-->
<p>Alternative content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
Oh no...upgraded Flash to 10 and I get an "error loading xml" in all browsers.,
Change
<param name="flashvars" value="showLogo=false","showRegistration=false" />
twice to
<param name="flashvars" value="showLogo=false&showRegistration=false" />
Christoph
Thanks, I really appreciate all your help. Changed the background color like this, works well!
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="530" height="186" >
<param name="movie" value="/public/slideshow/top/monoslideshow.swf" />
<param name="flashvars" value="showLogo=false&showRegistration=false" />
<param name="bgcolor" value="#8081ff" /><!--[if !IE]>-->
<object width="530" height="186" type="application/x-shockwave-flash" data="/public/slideshow/top/monoslideshow.swf">
<param name="flashvars" value="showLogo=false&showRegistration=false" />
<param name="bgcolor" value="#8081ff" />
<!--<![endif]-->
<p>Alternative content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
.
1 to 12 of 12