<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SlideShow Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home</link><description>SlideShow Wiki Rss Description</description><item><title>Updated Wiki: Quick Start Guide</title><link>http://slideshow.codeplex.com/wikipage?title=Quick Start Guide&amp;version=4</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Slide.Show Quick Start Guide&lt;/h2&gt;Vertigo Software&lt;br /&gt;December 2007&lt;br /&gt;
&lt;h3&gt;Introduction&lt;/h3&gt;This guide has one purpose – to help you build your first slideshow with Slide.Show as quickly as possible. It assumes that your scenario is typical – you have a nice collection of photos that you’d like to display on your personal Web site.&lt;br /&gt;&lt;br /&gt;Of course, Slide.Show was designed with flexibility in mind, whether it’s embedding Flickr photos directly in a blog post, displaying a line of products using the corporate colors and a watermark, or even providing a fluid, theater-like viewing experience for high-resolution artwork.&lt;br /&gt;&lt;br /&gt;But that’s not what this guide is about. Once you’re familiar with the basic steps and tips below, you’ll be ready to customize, extend, and embed your slideshows anywhere on the Web using the comprehensive documentation available in the Slide.Show User Guide. But first, the basics…&lt;br /&gt;
&lt;h3&gt;Your first slideshow with Slide.Show&lt;/h3&gt;The typical scenario involves the following steps:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Step 1.&lt;/b&gt; Determine the Web page to host the Slide.Show control&lt;br /&gt;&lt;b&gt;Step 2.&lt;/b&gt; Define a configuration file with the desired behavior and options for the control&lt;br /&gt;&lt;b&gt;Step 3.&lt;/b&gt; Define a data file with the album and slide data for the control&lt;br /&gt;
&lt;h4&gt;Step 1: Embed the control&lt;/h4&gt;At a minimum, a Web page hosting the Slide.Show control requires the following:
&lt;ul&gt;&lt;li&gt;An external script tag that references the standard &lt;b&gt;Silverlight.js&lt;/b&gt; file&lt;/li&gt;
&lt;li&gt;An external script tag that references the &lt;i&gt;Release&lt;/i&gt; version of the &lt;b&gt;SlideShow.js&lt;/b&gt; file&lt;/li&gt;
&lt;li&gt;An inline script tag that creates and embeds the Slide.Show control in the page&lt;/li&gt;&lt;/ul&gt;
&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Tip:&lt;/b&gt; To keep things organized, create a new folder in your site to contain the page and other files required by your slideshow, including the Silverlight.js and SlideShow.js scripts, configuration and data files, and images. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;First, create a new page in your site with the following content:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;html&amp;gt;
	&amp;lt;head&amp;gt;
		&amp;lt;title&amp;gt;Slide.Show&amp;lt;/title&amp;gt;
		&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;Silverlight.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
		&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;SlideShow.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
	&amp;lt;/head&amp;gt;
	&amp;lt;body&amp;gt;
		&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
			new SlideShow.Control();
		&amp;lt;/script&amp;gt;
	&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Next, view the page in the browser to make sure everything is wired up correctly. At this point, it’s just an empty slideshow as shown below:&lt;br /&gt;
&lt;h6&gt;Figure 1. An empty slideshow&lt;/h6&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=SlideShow&amp;DownloadId=23659" alt="Figure1.png" title="Figure1.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Note:&lt;/b&gt; The inline script tag will embed the Slide.Show control in the HTML document at the exact location of the script tag (e.g. within table cells). This is important to note when integrating the control with complex page layouts. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;h4&gt;Step 2: Configure the control&lt;/h4&gt;To give substance to your empty slideshow, you’ll need to configure it. In the typical scenario, this is done via an XML configuration file.&lt;br /&gt;&lt;br /&gt;First, modify the inline script tag in your page as follows:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
	new SlideShow.Control(new SlideShow.XmlConfigProvider());
&amp;lt;/script&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Note:&lt;/b&gt; Slide.Show can be configured via an XML file or JSON (JavaScript Object Notation). The latter allows inline or cross-domain configuration, essential for more complex scenarios (such as embedding the control in a blog post). &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Next, create a file named &lt;b&gt;Configuration.xml&lt;/b&gt; in the same folder as your page with the following content:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;configuration width=&amp;quot;600&amp;quot; height=&amp;quot;400&amp;quot; background=&amp;quot;Silver&amp;quot;&amp;gt;
	&amp;lt;modules&amp;gt;
		&amp;lt;module type=&amp;quot;SlideViewer&amp;quot; /&amp;gt;
		&amp;lt;module type=&amp;quot;ProgressBar&amp;quot; /&amp;gt;
		&amp;lt;module type=&amp;quot;SlideDescription&amp;quot; /&amp;gt;
		&amp;lt;module type=&amp;quot;NavigationTray&amp;quot;&amp;gt;
			&amp;lt;option name=&amp;quot;thumbnailViewer.left&amp;quot; value=&amp;quot;83&amp;quot; /&amp;gt;
		&amp;lt;/module&amp;gt;
	&amp;lt;/modules&amp;gt;
	&amp;lt;transitions&amp;gt;
		&amp;lt;transition type=&amp;quot;FadeTransition&amp;quot; name=&amp;quot;CrossFadeTransition&amp;quot; /&amp;gt;
		&amp;lt;transition type=&amp;quot;WipeTransition&amp;quot; name=&amp;quot;WipeRightTransition&amp;quot;&amp;gt;
			&amp;lt;option name=&amp;quot;direction&amp;quot; value=&amp;quot;Right&amp;quot; /&amp;gt;
		&amp;lt;/transition&amp;gt;
	&amp;lt;/transitions&amp;gt;
&amp;lt;/configuration&amp;gt;
&lt;/pre&gt;&lt;br /&gt;The above configuration overrides the default width, height, and background color of the Slide.Show control, and then adds a few modules and transitions that will provide standard slideshow behavior.&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Tip:&lt;/b&gt; Slide.Show supports over 300 configurable options! In the above configuration, option tags are used to override the default position of the thumbnail viewer and the default direction of the wipe transition. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Refresh your page in the browser to see the effect of the above configuration – now the control provides both basic and thumbnail navigation, buttons to toggle between album view and full-screen mode, and it will respond to the mouse by sliding in titles and descriptions from the top of the control.&lt;br /&gt;
&lt;h6&gt;Figure 2. A configured (but still empty) slideshow&lt;/h6&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=SlideShow&amp;DownloadId=23660" alt="Figure2.png" title="Figure2.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Note:&lt;/b&gt; You may need to restart the browser or clear the browser’s cache to view subsequent changes to the XML configuration file (and to prevent the browser from using a cached version of the file). &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;h4&gt;Step 3: Provide data to the control&lt;/h4&gt;In the previous step, we configured the size, background color, and behavior of the Slide.Show control. In this final step, we’ll provide album and slide data to the control via an XML data file.&lt;br /&gt;&lt;br /&gt;First, modify the end of the configuration file as follows:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
	...
	&amp;lt;/transitions&amp;gt;
	&amp;lt;dataProvider type=&amp;quot;XmlDataProvider&amp;quot; /&amp;gt;
&amp;lt;/configuration&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Tip:&lt;/b&gt; Alternatively, Slide.Show can be configured to use a different data provider, such as the FlickrDataProvider, which uses the Flickr API to retrieve photo data for a given Flickr user (via REST and JSON). This is useful for more complex scenarios where cross-domain file download restrictions are an issue. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Next, create a file named &lt;b&gt;Data.xml&lt;/b&gt; in the same folder as your page with the following format:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;data transition=&amp;quot;CrossFadeTransition&amp;quot;&amp;gt;
	&amp;lt;album
		title=&amp;quot;Album Title #1&amp;quot;
		description=&amp;quot;Album Description #1&amp;quot;
		image=&amp;quot;Images/Album1.jpg&amp;quot;&amp;gt;
		&amp;lt;slide
			title=&amp;quot;Slide Title #1&amp;quot;
			description=&amp;quot;Slide Description #1&amp;quot;
			image=&amp;quot;Images/Slide1.jpg&amp;quot;
			thumbnail=&amp;quot;Images/Thumbnail1.jpg&amp;quot; /&amp;gt;
		...
	&amp;lt;/album&amp;gt;
	...
&amp;lt;/data&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Obviously, your data file should be modified to contain real album and slide data specific to your slideshow. Once it’s complete, reload the page in the browser and enjoy your slideshow!&lt;br /&gt;
&lt;h6&gt;Figure 3. The finished slideshow&lt;/h6&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=SlideShow&amp;DownloadId=23661" alt="Figure3.jpg" title="Figure3.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Tip:&lt;/b&gt; The data file may reference local or remote images using relative or absolute URLs. JPEG and PNG format is supported. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt; &lt;b&gt;Tip:&lt;/b&gt; Although Slide.Show works well with a single set of images, you can optimize performance and improve the sharpness of smaller images in your slideshow by creating additional sets of images sized specifically for use by albums, thumbnails, and thumbnail previews. &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;h3&gt;Where to go from here?&lt;/h3&gt;Now that you’re familiar with the basic steps and tips above, please refer to the Slide.Show User Guide for comprehensive documentation detailing additional usage scenarios, modules, transitions, configuration and data providers, options, architecture diagrams, contributor guidelines, and tips for extending Slide.Show to meet your unique needs.&lt;br /&gt;
&lt;h4&gt;CodePlex&lt;/h4&gt;Please visit the &lt;a href="http://slideshow.codeplex.com/wikipage?referringTitle=Quick%20Start%20Guide"&gt;Slide.Show project page&lt;/a&gt; for the latest releases, discussions, source code, and to provide feedback, report bugs, suggest new features, or to become an open source contributor for the project.&lt;br /&gt;
&lt;h4&gt;Vertigo&lt;/h4&gt;Please visit the &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Slide.Show home page&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; to play with a live sample, or for the latest news and additional samples.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>billyzkid</author><pubDate>Wed, 11 Jan 2012 18:27:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Quick Start Guide 20120111062729P</guid></item><item><title>Updated Wiki: Home</title><link>http://slideshow.codeplex.com/wikipage?version=77</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;What is Slide.Show?&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;UPDATE!&lt;/b&gt; &lt;a href="http://www.codeplex.com/SlideShow2" class="externalLink"&gt;Slide.Show 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; is now available as a separate CodePlex project! Slide.Show 2 is a port of the original Slide.Show application to managed code for Silverlight 2. It includes all of the features of Slide.Show 1 and more.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=SlideShow&amp;DownloadId=23217" alt="SlideView.jpg" title="SlideView.jpg" /&gt;&lt;br /&gt;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=SlideShow&amp;DownloadId=23215" alt="AlbumView.jpg" title="AlbumView.jpg" /&gt;&lt;br /&gt;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=SlideShow&amp;DownloadId=45226" alt="MemorabiliaSample.jpg" title="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt;
&lt;h4&gt;Features&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Minimal setup and configuration&lt;/li&gt;
&lt;li&gt;Resizable for any Web page design&lt;/li&gt;
&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;
&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;
&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;
&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;
&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC &lt;u&gt;and&lt;/u&gt; Mac) &lt;/li&gt;
&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;
&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;&lt;/ul&gt;
&lt;h4&gt;Quick Links&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://slideshow.codeplex.com/wikipage?title=Quick%20Start%20Guide&amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;
&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Ben Hoffman&amp;#39;s &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>billyzkid</author><pubDate>Wed, 11 Jan 2012 18:26:28 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120111062628P</guid></item><item><title>New Comment on "Quick Start Guide"</title><link>http://slideshow.codeplex.com/wikipage?title=Quick Start Guide&amp;ANCHOR#C18918</link><description>How we can change background color&amp;#63; I want change color black to white or another color&amp;#63; how i we change background color&amp;#63; please help its urgent....</description><author>kuldeeppal20</author><pubDate>Tue, 15 Mar 2011 08:29:33 GMT</pubDate><guid isPermaLink="false">New Comment on "Quick Start Guide" 20110315082933A</guid></item><item><title>New Comment on "Quick Start Guide"</title><link>http://slideshow.codeplex.com/Wiki/View.aspx?title=Quick Start Guide&amp;ANCHOR#C12867</link><description>The slide show is too good. i appreciate that. but i want images to be shown in continuous loop. Can anyone guide me how i can configure this sildeshow for continuous loop. thanks in advance</description><author>ajoychawla</author><pubDate>Wed, 13 May 2009 07:15:21 GMT</pubDate><guid isPermaLink="false">New Comment on "Quick Start Guide" 20090513071521A</guid></item><item><title>New Comment on "Quick Start Guide"</title><link>http://slideshow.codeplex.com/Wiki/View.aspx?title=Quick Start Guide&amp;ANCHOR#C12711</link><description>Where is the user guide?</description><author>AndreT503</author><pubDate>Mon, 20 Apr 2009 22:18:10 GMT</pubDate><guid isPermaLink="false">New Comment on "Quick Start Guide" 20090420101810P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=76</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;UPDATE!&lt;/b&gt; &lt;a href="http://www.codeplex.com/SlideShow2" class="externalLink"&gt;Slide.Show 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; is now available as a separate CodePlex project! Slide.Show 2 is a port of the original Slide.Show application to managed code for Silverlight 2. It includes all of the features of Slide.Show 1 and more.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC &lt;u&gt;and&lt;/u&gt; Mac) &lt;/li&gt;&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Sat, 25 Oct 2008 15:42:26 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081025034226P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=75</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;UPDATE!&lt;/b&gt; &lt;a href="http://www.codeplex.com/SlideShow2" class="externalLink"&gt;Slide.Show 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; is now available as a separate CodePlex project! Slide.Show 2 is a port of the original Slide.Show application to managed code for Silverlight 2. It includes all of the features of the original application and more.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC &lt;u&gt;and&lt;/u&gt; Mac) &lt;/li&gt;&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Sat, 25 Oct 2008 15:37:53 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081025033753P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=74</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;UPDATE!&lt;/b&gt; If you are a new user, &lt;a href="http://www.codeplex.com/SlideShow2" class="externalLink"&gt;Slide.Show 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; is now available as a separate CodePlex project! Slide.Show 2 is a port of the original Slide.Show application to managed code for Silverlight 2. It includes all of the features of the original application and then some.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC &lt;u&gt;and&lt;/u&gt; Mac) &lt;/li&gt;&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Sat, 25 Oct 2008 15:36:38 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081025033638P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=73</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC &lt;u&gt;and&lt;/u&gt; Mac) &lt;/li&gt;&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Sat, 25 Oct 2008 15:30:53 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081025033053P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=72</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC &lt;u&gt;and&lt;/u&gt; Mac) &lt;/li&gt;&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Mon, 06 Oct 2008 19:44:03 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081006074403P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=71</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC and Mac!) &lt;/li&gt;&lt;li&gt;Supports Silverlight 1.0 &lt;u&gt;and&lt;/u&gt; Silverlight 2&lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Mon, 06 Oct 2008 17:26:37 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081006052637P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=70</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC and Mac!) &lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;more information&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; about this project and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:28:02 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003012802P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=69</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC and Mac!) &lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for more information about &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Slide.Show&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and other &lt;a href="http://www.vertigo.com/News.aspx" class="externalLink"&gt;news&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:26:39 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003012639P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=68</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h3&gt;
Quick Links
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;
Features
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC and Mac!) &lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by &lt;a href="http://www.vertigo.com" class="externalLink"&gt;Vertigo&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Please visit us for more information about &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Slide.Show&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or to view other samples of our work.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:24:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003012432P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=67</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h3&gt;
Quick Links
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;
Features
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC and Mac!) &lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by Vertigo Software. For more information on &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;the project&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and to see other samples of their work, you can visit &lt;a href="http://www.vertigo.com" class="externalLink"&gt;their website&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:21:35 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003012135P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=66</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration&lt;/li&gt;&lt;li&gt;Resizable for any Web page design&lt;/li&gt;&lt;li&gt;Full-screen and embedded modes&lt;/li&gt;&lt;li&gt;100% configurable via XML, themes, or your own custom provider&lt;/li&gt;&lt;li&gt;Slideshow data from XML, Flickr, or your own custom provider &lt;/li&gt;&lt;li&gt;Auto-playback with numerous transitions (e.g. fade, shape, slide, wipe) &lt;/li&gt;&lt;li&gt;Cross-browser (e.g. IE 6/7/8, Firefox 2/3, Safari 2/3, PC and Mac!) &lt;/li&gt;&lt;li&gt;Open source (e.g. extensible controls, configuration and data provider models, commented code)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by Vertigo Software. For more information on &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;the project&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and to see other samples of their work, you can visit &lt;a href="http://www.vertigo.com" class="externalLink"&gt;their website&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:20:18 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003012018P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=65</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=45226" alt="MemorabiliaSample.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Memorabilia Sample&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Interested in the gory details? Read the comprehensive User Guide (coming soon!)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration required to embed in any page &lt;/li&gt;&lt;li&gt;100% customizable via XML or JavaScript &lt;/li&gt;&lt;li&gt;Album and slide data provided by XML, Flickr, or JavaScript &lt;/li&gt;&lt;li&gt;Auto-playback with multiple transitions (e.g. fade, shape, slide, wipe, etc.) &lt;/li&gt;&lt;li&gt;Plug and play with hundreds of color, font, size, position, and behavior options &lt;/li&gt;&lt;li&gt;Cross-browser (IE 6 and 7, Firefox 2, Safari 2 and 3, both Windows and Mac!) &lt;/li&gt;&lt;li&gt;Can be sized to fit any design and is even resizable for fluid layouts &lt;/li&gt;&lt;li&gt;Full-screen and embedded modes &lt;/li&gt;&lt;li&gt;Architected for open source extensibility (e.g. object-oriented JavaScript, configuration/data provider model, user controls, modular, etc.)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by Vertigo Software. For more information on &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;the project&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and to see other samples of their work, you can visit &lt;a href="http://www.vertigo.com" class="externalLink"&gt;their website&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:11:08 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003011108P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=64</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Interested in the gory details? Read the comprehensive User Guide (coming soon!)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration required to embed in any page &lt;/li&gt;&lt;li&gt;100% customizable via XML or JavaScript &lt;/li&gt;&lt;li&gt;Album and slide data provided by XML, Flickr, or JavaScript &lt;/li&gt;&lt;li&gt;Auto-playback with multiple transitions (e.g. fade, shape, slide, wipe, etc.) &lt;/li&gt;&lt;li&gt;Plug and play with hundreds of color, font, size, position, and behavior options &lt;/li&gt;&lt;li&gt;Cross-browser (IE 6 and 7, Firefox 2, Safari 2 and 3, both Windows and Mac!) &lt;/li&gt;&lt;li&gt;Can be sized to fit any design and is even resizable for fluid layouts &lt;/li&gt;&lt;li&gt;Full-screen and embedded modes &lt;/li&gt;&lt;li&gt;Architected for open source extensibility (e.g. object-oriented JavaScript, configuration/data provider model, user controls, modular, etc.)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by Vertigo Software. For more information on &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;the project&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and to see other samples of their work, you can visit &lt;a href="http://www.vertigo.com" class="externalLink"&gt;their website&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Fri, 03 Oct 2008 13:04:11 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081003010411P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=63</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight 1.0 control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Interested in the gory details? Read the comprehensive User Guide (coming soon!)&lt;/li&gt;&lt;li&gt;Slide.Show &lt;a href="http://www.vertigo.com/downloads/gobstopper/gobstopper10.wmv" class="externalLink"&gt;HOWTO video&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; by Jeff Atwood from &lt;a href="http://www.codinghorror.com" class="externalLink"&gt;Coding Horror&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration required to embed in any page &lt;/li&gt;&lt;li&gt;100% customizable via XML or JavaScript &lt;/li&gt;&lt;li&gt;Album and slide data provided by XML, Flickr, or JavaScript &lt;/li&gt;&lt;li&gt;Auto-playback with multiple transitions (e.g. fade, shape, slide, wipe, etc.) &lt;/li&gt;&lt;li&gt;Plug and play with hundreds of color, font, size, position, and behavior options &lt;/li&gt;&lt;li&gt;Cross-browser (IE 6 and 7, Firefox 2, Safari 2 and 3, both Windows and Mac!) &lt;/li&gt;&lt;li&gt;Can be sized to fit any design and is even resizable for fluid layouts &lt;/li&gt;&lt;li&gt;Full-screen and embedded modes &lt;/li&gt;&lt;li&gt;Architected for open source extensibility (e.g. object-oriented JavaScript, configuration/data provider model, user controls, modular, etc.)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by Vertigo Software. For more information on &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;the project&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and to see other samples of their work, you can visit &lt;a href="http://www.vertigo.com" class="externalLink"&gt;their website&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Thu, 10 Jan 2008 22:47:37 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080110104737P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Home&amp;version=62</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
What is Slide.Show?
&lt;/h2&gt;Slide.Show is an open source Silverlight 1.0 control for publishing highly-customizable photo slideshows on the Web.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23217" alt="SlideView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Slide View&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SlideShow&amp;amp;DownloadId=23215" alt="AlbumView.jpg" /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;i&gt;Album View&lt;/i&gt;&lt;br /&gt;&lt;h4&gt;
Quick Links
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;Play with a live sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Need a slideshow yesterday? Read the &lt;a href="http://www.codeplex.com/SlideShow/Wiki/View.aspx?title=Quick%20Start%20Guide&amp;amp;referringTitle=Home"&gt;Quick Start Guide&lt;/a&gt; (also available in &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.doc" class="externalLink"&gt;Word (.doc)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.vertigo.com/SlideShow/Slide.Show%20Quick%20Start%20Guide.pdf" class="externalLink"&gt;Acrobat (.pdf)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; format)&lt;/li&gt;&lt;li&gt;Interested in the gory details? Read the comprehensive User Guide (coming soon!)&lt;/li&gt;&lt;li&gt;Ben Hoffman's &lt;a href="http://www.codeplex.com/ssgenerator" class="externalLink"&gt;SSGenerator&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; tool for image resizing and Slide.Show data file generation&lt;/li&gt;
&lt;/ul&gt;&lt;h4&gt;
Features
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;Minimal setup and configuration required to embed in any page &lt;/li&gt;&lt;li&gt;100% customizable via XML or JavaScript &lt;/li&gt;&lt;li&gt;Album and slide data provided by XML, Flickr, or JavaScript &lt;/li&gt;&lt;li&gt;Auto-playback with multiple transitions (e.g. fade, shape, slide, wipe, etc.) &lt;/li&gt;&lt;li&gt;Plug and play with hundreds of color, font, size, position, and behavior options &lt;/li&gt;&lt;li&gt;Cross-browser (IE 6 and 7, Firefox 2, Safari 2 and 3, both Windows and Mac!) &lt;/li&gt;&lt;li&gt;Can be sized to fit any design and is even resizable for fluid layouts &lt;/li&gt;&lt;li&gt;Full-screen and embedded modes &lt;/li&gt;&lt;li&gt;Architected for open source extensibility (e.g. object-oriented JavaScript, configuration/data provider model, user controls, modular, etc.)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Slide.Show was developed by Vertigo Software. For more information on &lt;a href="http://www.vertigo.com/SlideShow.aspx" class="externalLink"&gt;the project&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; and to see other samples of their work, you can visit &lt;a href="http://www.vertigo.com" class="externalLink"&gt;their website&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>billyzkid</author><pubDate>Sun, 06 Jan 2008 07:37:02 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080106073702A</guid></item></channel></rss>