<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Autoplay Media Studio Examples &#38; Scripts &#187; SlideShow</title>
	<atom:link href="http://amstudio.azman.info/category/slideshow/feed/" rel="self" type="application/rss+xml" />
	<link>http://amstudio.azman.info</link>
	<description>Samples for Autoplay Media Studio Users</description>
	<lastBuildDate>Fri, 17 Jun 2011 15:52:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>What&#8217;s New in AMS 8</title>
		<link>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/</link>
		<comments>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 15:47:44 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Check Box]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Grid]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Inherit]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=894</guid>
		<description><![CDATA[Hi, If you want to use all the examples from AMS 5 to AMS 7.5 in your AMS 8 projects, please take note below. AMS 8 is using an updated version of LUA 5.1. One of the most important change is the TABLE ITERATION. This is the old code used in AMS 5 to AMS [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>If you want to use all the examples from AMS 5 to AMS 7.5 in your AMS 8 projects, please take note below.</p>
<p>AMS 8 is using an updated version of LUA 5.1. One of the most important change is the TABLE ITERATION.</p>
<p>This is the old code used in AMS 5 to AMS 7.5 for TABLE ITERATION ( loops )<br />
<code><br />
-----------------------------------------------<br />
mytable = {"One","Two","Three"};</p>
<p>for k, v in mytable do<br />
   Dialog.Message("Table Item", k .. "=" .. v);<br />
end<br />
-----------------------------------------------<br />
</code></p>
<p>If my examples are using LOOPS, you need to change like below:</p>
<p><code><br />
----------------------------------------------<br />
mytable = {"One","Two","Three"};</p>
<p>for k, v in <strong><span style="color: #ff0000;">pairs</span></strong>(mytable) do<br />
    Dialog.Message("Table Item", k .. "=" .. v);<br />
end<br />
----------------------------------------------<br />
</code></p>
<p>See the word &#8220;<span style="color: #ff0000;">pairs</span>&#8221; in red and the bracket, above?</p>
<p>Just add a BRACKET around your TABLE NAME and add the word &#8220;<span style="color: #ff0000;">pairs</span>&#8220;.</p>
<p>Then all my examples using loops will work.</p>
<p>lol &#8230;.. 99.9 % of my examples are using LOOPS.<br />
You&#8217;ll definitely have to change the codes.</p>
<p>Hope this helps.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=What%26%238217%3Bs%20New%20in%20AMS%208&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2011%2F06%2F17%2Fwhats-new-in-ams-8%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Search Image Utility : Drill Down</title>
		<link>http://amstudio.azman.info/2009/06/10/search-image-utility-drill-down/</link>
		<comments>http://amstudio.azman.info/2009/06/10/search-image-utility-drill-down/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 03:58:09 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Check Box]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Search Image Utility Drill Down]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=819</guid>
		<description><![CDATA[Hi, We need to improve the Search Image Utility slightly before we go forward and insert it to our Mini Email Address Book. The previous examples shows how to search the whole selected drive. This time, we can drill down and choose our search to specific folder. This way, we don&#8217;t need to search the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>We need to improve the Search Image Utility slightly before we go forward and insert it to our Mini Email Address Book. The previous examples shows how to search the whole selected drive. This time, we can drill down and choose our search to specific folder. This way, we don&#8217;t need to search the whole drives everytime. <strong>Now we have more control of our search.</strong></p>
<p>If you check the screen shot below, you&#8217;ll see I&#8217;ve added 2 Buttons, 1 Check Box and an additional Label.</p>
<div id="attachment_820" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil1.jpg"><img class="size-medium wp-image-820" title="searchimageutil1" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil1-300x274.jpg" alt="Search Image Utility" width="300" height="274" /></a><p class="wp-caption-text">Search Image Utility</p></div>
<p>The <strong>Refresh Button</strong> :  refreshes any new storage media that was just inserted such as Thumbdrive and etc. It also clears the Selected Folder Path Flat Input Box.</p>
<p>The <strong>Folder Button</strong> : opens a Dialog of Folders within the Selected Drive. Select a Folder. The path will appear in the Flat Input Box. This input box is Read Only. So you can&#8217;t delete what you selected by typing into it. To delete it, you have to use REFRESH BUTTON. To choose another folder, just click the FOLDER BUTTON again.</p>
<p>The <strong>Check Box</strong> &#8220;Keep Previous Search&#8221; : will let you keep previous search in the Search Result ListBox. This is useful for doing lots of searches, trim what you dont need and save into specific Groups. This is where the new Label comes into play.</p>
<p>The <strong>Label &#8220;FOUND&#8221;</strong> : shows the total number of items found in the latest search.</p>
<p>The <strong>Label &#8220;TOTAL&#8221;</strong> : shows the total number of items in the ListBox.</p>
<div id="attachment_821" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil2.jpg"><img class="size-medium wp-image-821" title="searchimageutil2" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil2-300x273.jpg" alt="Search Image Utility" width="300" height="273" /></a><p class="wp-caption-text">Search Image Utility : Folder Drill Down</p></div>
<p>For the purpose of the Mini Email Address Book, the Image Size I plan to use are normally small. We have the choice of using our favourite Image Editing Tool. If we need to embed a <strong>basic image editing console</strong>, then the use of DLLs is unavoidable. So in the next article, I&#8217;ll be using some DLLs to :<br />
1. Rotate Image<br />
2. Resize Image<br />
3. Crop Image</p>
<p>I will maintain the Images&#8217; Aspect Ratio and then Save the Images into its special folder just for the Mini Email Address Book.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/slideshow/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Please leave a comment if you choose to download this example.</p>
<p>WARNING : This example needs advance familiarity with AMS objects and actions. Cut and paste will not help in improving your skills.  You need substantial understanding to place Error Check functions in the scripts. Advance skills is also needed if you plan to improve this example and repair my mistakes. SO&#8230;. if you are not familiar with AMS object and actions, please dig and understand Basic Examples I have posted earlier.  And use the HELP FILE as reference.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Search%20Image%20Utility%20%3A%20Drill%20Down&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F06%2F10%2Fsearch-image-utility-drill-down%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/06/10/search-image-utility-drill-down/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Search Image Utility &amp; SlideShow</title>
		<link>http://amstudio.azman.info/2009/06/08/search-image-utility-slideshow/</link>
		<comments>http://amstudio.azman.info/2009/06/08/search-image-utility-slideshow/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 18:25:14 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Search Image Utility with Slide Show]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=811</guid>
		<description><![CDATA[Hi, I noticed a lot of downloads for the Basic SlideShow. Safe to say that the posted sample is quite useful indeed. Thanks for downloading, but where are the comments? Even short comments would be much appreciated. As promised, here&#8217;s the Search Image Utility with a SlideShow feature, alongwith of the Thumblist feature. From the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I noticed a lot of downloads for the Basic SlideShow. Safe to say that the posted sample is quite useful indeed. Thanks for downloading, but where are the comments? Even short comments would be much appreciated.</p>
<p>As promised, here&#8217;s the Search Image Utility with a SlideShow feature, alongwith of the Thumblist feature.</p>
<p>From the ScreenShot below, you will notice I&#8217;ve added a Slide Show button to the project. OnClick, a Temp Table is created by collecting info from the ListBox. Then the same action opens a DialogEx with a SlideShow object. OnShow, the DialogEx collects info from the Temp Table and inserts them (image path) into the SlideShow object. No big deal. The Temp Table is the KEY. It bridges info between objects. <strong>AMS &amp; LUA rulez !!!!</strong></p>
<div id="attachment_813" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow.jpg"><img class="size-medium wp-image-813" title="searchslideshow" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow-300x275.jpg" alt="Search Image with SlideShow" width="300" height="275" /></a><p class="wp-caption-text">Search Image with SlideShow</p></div>
<p>Your Search Results can be seen in a SlideShow. And if you select a Saved Groups, you can view a SlideShow of it as well ( shown on the screen shot below ). AND &#8230;&#8230;&#8230;&#8230;if you tweak this example further with <strong>RETESET&#8217;s, SSIDE&#8217;s, UPETER&#8217;s, WORM&#8217;s </strong>&amp;<strong> DERMOT&#8217;s plugins</strong>, you&#8217;ll amazed yourself with a feature-rich Electronic Album.</p>
<div id="attachment_814" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow2.jpg"><img class="size-medium wp-image-814" title="searchslideshow2" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow2-300x226.jpg" alt="Search Image Utility with Slide Show" width="300" height="226" /></a><p class="wp-caption-text">Search Image Utility with Slide Show</p></div>
<p>Finally, if you plan to distribute APPs developed from project examples in this blog, PLEASE INCLUDE ERROR CHECK FUNCTION for each AMS action. It&#8217;s your responsibility to do that. Most of my examples are without error checking for the sake of clarity.</p>
<p>Please leave your comments in this blog.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/slideshow/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Search%20Image%20Utility%20%26%23038%3B%20SlideShow&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F06%2F08%2Fsearch-image-utility-slideshow%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/06/08/search-image-utility-slideshow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Basic Slide Show</title>
		<link>http://amstudio.azman.info/2009/06/07/basic-slide-show/</link>
		<comments>http://amstudio.azman.info/2009/06/07/basic-slide-show/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 18:20:24 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[Slide Show]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=801</guid>
		<description><![CDATA[Hi, I thought of inserting a SlideShow function into our Search Image File Utility. This will put it closer towards becoming an Electronic Album. Before doing this, some readers may want to see a basic example of a stand-alone Slide Show. What this project does: 1. Auto-Populate Images from AMS images folder into the SlideShow. 2. [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I thought of inserting a SlideShow function into our Search Image File Utility. This will put it closer towards becoming an Electronic Album. Before doing this, some readers may want to see a <strong>basic example of a stand-alone Slide Show.<br />
</strong></p>
<div id="attachment_805" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/basicslideshow.jpg"><img class="size-medium wp-image-805" title="basicslideshow" src="http://amstudio.azman.info/wp-content/uploads/2009/06/basicslideshow-300x216.jpg" alt="A Basic SlideShow" width="300" height="216" /></a><p class="wp-caption-text">A Basic SlideShow</p></div>
<p><strong>What this project does:</strong><br />
1. Auto-Populate Images from AMS images folder into the SlideShow.<br />
2. Place the first Image immediately, so we don&#8217;t see a blank or black screen.<br />
3. Auto Insert Slide Number &amp; Total Slide Number in an FLAT INPUT BOX.<br />
4. Clicking the Start Button will start the SlideShow. Auto is OFF.<br />
5. As the SlideShow plays, the FLAT INPUT BOX shows the current Slide Number, dynamically.<br />
6. Also, as the SlideShow plays, another Input Box shows the current Image Path, dynamically. Clicking OPEN button will run that Image in a user default image software.</p>
<p>I&#8217;ve inserted some control over the SlideShow. So, we know where we are, stop it wherever we want to,  return to previous slides or go to the next slides as we wish. And run it from there.</p>
<p>Anyways, we can have more advanced control such as Re-Arrange the Sequence of Images, Save that sequence for a Presentation, Delete Unwanted Images from the SlideShow as well as Navigate right to a Slide from a Number Input. And &#8230;.. I leave these extra functions entirely for your development pleasure.</p>
<p>Please leave a comment if you choose to download this sample.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/slideshow/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Basic%20Slide%20Show&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F06%2F07%2Fbasic-slide-show%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/06/07/basic-slide-show/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Combo Box to Slide Show</title>
		<link>http://amstudio.azman.info/2009/03/02/combo-box-to-slide-show/</link>
		<comments>http://amstudio.azman.info/2009/03/02/combo-box-to-slide-show/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 17:56:37 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[AMS Samples]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[Tables]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=70</guid>
		<description><![CDATA[This example shows how to use Combo Box to insert and arrange IMAGES into groups of Slide Shows. Right-click to Download the APZ file.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p>
<p>This example shows how to use Combo Box to insert and arrange IMAGES into groups of Slide Shows.</p>
<div id="attachment_73" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/9.jpg"><img class="size-medium wp-image-73" title="Combo to Slide Show" src="http://amstudio.azman.info/wp-content/uploads/2009/03/9-300x214.jpg" alt="Screen Shot : Combo to Slide Show" width="300" height="214" /></a><p class="wp-caption-text">Screen Shot : Combo to Slide Show</p></div>
<p>Right-click to <a title="Combo to Slideshow" href="http://amstudio.azman.info/wp-content/uploads/2009/03/combo2slideshow.apz"><span style="text-decoration: underline;"><strong>Download the APZ file</strong></span></a>.
</p>
</p>
<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Combo%20Box%20to%20Slide%20Show&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F02%2Fcombo-box-to-slide-show%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/02/combo-box-to-slide-show/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

