Hi Jerry, I'm wondering if the issue is the height of the container in which the slideshow is being placed. Here's an example that I was able to get working:
http://savedbythegoog.appspot.com/?id=ag5zYXZlZGJ5dGhlZ29vZ3ISCxIJU2F2ZWRDb2RlGPjL5AEM If we could see the full page where you are seeing this issue (since CSS rules might be a factor) that might help. Thank you, Jeff On Sat, Oct 10, 2009 at 5:29 PM, Jerry Dumont <[email protected]> wrote: > > I am having an issue placing more than one Slideshow on a page. I can > only get one slideshow to show up. Here is my code. > > In HEADER: > <!-- Google AJAX slideshow --> > <script src="http://www.google.com/jsapi" > type="text/javascript"></script> > <script src="http://www.google.com/uds/solutions/slideshow/ > gfslideshow.js<http://www.google.com/uds/solutions/slideshow/%0Agfslideshow.js> > " > type="text/javascript"></script> > > <script type="text/javascript"> > > function LoadSlideShow() { > var feed = "http://picasaweb.google.com/data/feed/base/user/ > jdumont3/albumid/5390536411150560945?alt=rss&kind=photo&hl=en_US<http://picasaweb.google.com/data/feed/base/user/%0Ajdumont3/albumid/5390536411150560945?alt=rss&kind=photo&hl=en_US> > "; > var feed2 = "http://picasaweb.google.com/data/feed/base/user/ > jdumont3/albumid/5391122060824067249?alt=rss&kind=photo&hl=en_US<http://picasaweb.google.com/data/feed/base/user/%0Ajdumont3/albumid/5391122060824067249?alt=rss&kind=photo&hl=en_US> > "; > var options = {displayTime:5000, transistionTime:600, > scaleImages:true}; > var options2 = {displayTime:5000, transistionTime:600, > scaleImages:true}; > var ss1 = new GFslideShow(feed, "slideShow", options); > var ss2 = new GFslideShow(feed2, "slideShow99", options2); > > } > /** > * Use google.load() to load the AJAX Feeds API > * Use google.setOnLoadCallback() to call LoadSlideShow once the > page loads > google.setOnLoadCallback(LoadSlideShow1);*/ > google.load("feeds", "1"); > > google.setOnLoadCallback(LoadSlideShow); > > </script> > > > > > IN BODY: > <table width="486" height="25" border="1" align="center"> > <tr> > <td><div id="slideShow">Loading...</div></td> > <td><div id="slideShow99">Loading...</div></td> > <td></td> > </tr> > </table> > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en -~----------~----~----~----~------~----~------~--~---
