PDA

View Full Version : Flash Slideshow Question


austinstrobist
May-01-2009, 01:44 PM
I implemented the slide show and it is running great but I am having an isse with adding a border to the slideshow.

Whenever I follow the tutorial on adding a border it reflects fine in IE 8 and FF 3 but not older versions of IE. The end users only see the banner and NAV bar with no slideshow.

Any ideas?

stefanochoi.com or stefanochoi.smugmug.com

Here is my code and where I am putting the info:

<html>
********>
var ssConfig = {
AlbumID: '7898280',
newWindow: 'false',
transparent: 'true',
splash: 'http://stefanochoi.smugmug.com/photos/512935773_682es-XL.jpg',
showLogo: 'false',
clickToImage: 'true',
showThumbs: 'false',
showButtons: 'false',
crossFadeSpeed: '250',
borderThickness: '5',
borderColor: 'ffffff',};

SM.flash.insertSlideshow(600, 600, ssConfig, 'transparent');
</********
</html>

jfriend
May-01-2009, 02:36 PM
Remove the comma you have after the borderColor line (before the closing brace). There is not supposed to be a comma after that last line. That is technically a javascript error and IE7 trips on it. Some other browser ignore the error.

austinstrobist
May-01-2009, 02:48 PM
I think that did the trick!

I don't have access to IE 7, can someone confirm?

Thanks!

jfriend
May-01-2009, 02:50 PM
I think that did the trick!

I don't have access to IE 7, can someone confirm?

Thanks! Your slideshow is working here in IE7, FF3 and Safari 3.2.

austinstrobist
May-01-2009, 03:16 PM
Perfect. Thanks again for your assistance! :clap