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"
    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";
        var feed2  = "http://picasaweb.google.com/data/feed/base/user/
jdumont3/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
-~----------~----~----~----~------~----~------~--~---

Reply via email to