sdSlideLinks for SeydoggySlideshow 3
sdSlideLinks is a complimentary snippet for use with SeydoggySlideshow 3 (or SS3) enabled themes. The sdSlideLinks snippet is a method for defining unique URL's for each slide in an SS3 slide show, whether they are the default internal image slides, externally hosted image slides or content based SlideBox slides.
Installation
To install "sdSlideLinks", double click the .rwsnippet or drag and drop the file into ~/Library/Application Support/RapidWeaver/Snippets.
Overview
Usage
- Open the Page Inspector (
RapidWeaver > View > Show Page Inspector). Once you've set up the slide show with the desired settings, paste this snippet into
Page Inspector > Header > JavaScriptchanging each URL to suit your needs.The snippet will look like this:
sdSS.slideLinks = [ "http://www.google.com", "http://www.tumblr.com", "http://www.twitter.com", "http://www.flickr.com", "http://www.facebook.com" ];
The order of the links will coincide with the order of your slides.
- Be sure that the number of links used matches the number of slides in your slide show. To add links to the end of your sequence:
- Add a comma to the end of the URL line that is currently last (i.e.
"http://www.facebook.com",). - Add a new line after the comma.
- On the new line, add your new URL in quotations (i.e.
"http://seydesign.com"). Repeat a through c for each additional link.
The snippet will now look like this:
sdSS.slideLinks = [ "http://www.google.com", "http://www.tumblr.com", "http://www.twitter.com", "http://www.flickr.com", "http://www.facebook.com", "http://seydesign.com" ];
- Add a comma to the end of the URL line that is currently last (i.e.
- To remove links from the end of your sequence:
- Remove the last URL line (i.e.
"http://www.facebook.com"). - Remove the trailing comma from what is now the last URL line (i.e.
"http://www.flickr.com") Repeat a and b for each link you wish to remove.
The snippet will now look like this:
sdSS.slideLinks = [ "http://www.google.com", "http://www.tumblr.com", "http://www.twitter.com", "http://www.flickr.com" ];
- Remove the last URL line (i.e.
