<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Create a Simple Slideshow Using MooTools, Part II:  Controls and&#160;Events</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Thu, 23 Jun 2011 05:55:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: shooli</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/comment-page-1/#comment-101649</link>
		<dc:creator>shooli</dc:creator>
		<pubDate>Fri, 25 Jun 2010 05:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/#comment-101649</guid>
		<description>You need a Photo Editing Software to do what you want.</description>
		<content:encoded><![CDATA[<p>You need a Photo Editing Software to do what you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/comment-page-1/#comment-76554</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Sat, 27 Mar 2010 17:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/#comment-76554</guid>
		<description>Under the CSS selector name for &quot;scroll3&quot;:

#scroll3 {
width: 572px;
height: 401px;
border: 1px solid #646464;
overflow: auto;
text-align: center;
background: url(path to image) no-repeat center scroll;
}

Make sure the width and height is large enough to put the image in as a background if image does not repeat. Add the position code as it was truncated by YA when you posted. Ignore other Answerers as the style=&quot;&quot; attribute should not be used if you have an id selector name. Plus, you forgot to add the dimensions to the width/height so it wouldn&#039;t have worked.

Now...

&lt;div id=&quot;scroll3&quot;&gt;&lt;p&gt;1&lt;/p&gt;&lt;/div&gt;

Ron</description>
		<content:encoded><![CDATA[<p>Under the CSS selector name for &quot;scroll3&quot;:</p>
<p>#scroll3 {<br />
width: 572px;<br />
height: 401px;<br />
border: 1px solid #646464;<br />
overflow: auto;<br />
text-align: center;<br />
background: url(path to image) no-repeat center scroll;<br />
}</p>
<p>Make sure the width and height is large enough to put the image in as a background if image does not repeat. Add the position code as it was truncated by YA when you posted. Ignore other Answerers as the style=&quot;&quot; attribute should not be used if you have an id selector name. Plus, you forgot to add the dimensions to the width/height so it wouldn&#039;t have worked.</p>
<p>Now&#8230;</p>
<p>&lt;div id=&quot;scroll3&quot;&gt;&lt;p&gt;1&lt;/p&gt;&lt;/div&gt;</p>
<p>Ron</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr. Sunshine</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/comment-page-1/#comment-56967</link>
		<dc:creator>Mr. Sunshine</dc:creator>
		<pubDate>Wed, 17 Mar 2010 09:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/#comment-56967</guid>
		<description>I would advertise on the internet, radio, and TV.</description>
		<content:encoded><![CDATA[<p>I would advertise on the internet, radio, and TV.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cks</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/comment-page-1/#comment-36014</link>
		<dc:creator>cks</dc:creator>
		<pubDate>Wed, 10 Feb 2010 17:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/#comment-36014</guid>
		<description>The reason that this code isn&#039;t working is because you aren&#039;t telling the computer where the image is exactly located.  When inserting an image you really need to tell the computer what folder it is in and the extension of the image.  For example: say that you had a web site on computers and you had all of your information inside of a folder called computers including your images, you would need to make a folder called images inside of the computers folder and then the code should work.
&lt;img src=&quot;computers/images/picture.jpg&quot;&gt; and in your example of &lt;img src=&quot;$image&quot;/&gt;;  your /&gt; is what you use to close a tag so that is probably confusing the computer also.  Good luck, I hoped this helped and if you need any more help you can ask me again.</description>
		<content:encoded><![CDATA[<p>The reason that this code isn&#039;t working is because you aren&#039;t telling the computer where the image is exactly located.  When inserting an image you really need to tell the computer what folder it is in and the extension of the image.  For example: say that you had a web site on computers and you had all of your information inside of a folder called computers including your images, you would need to make a folder called images inside of the computers folder and then the code should work.<br />
&lt;img src=&quot;computers/images/picture.jpg&quot;&gt; and in your example of &lt;img src=&quot;$image&quot;/&gt;;  your /&gt; is what you use to close a tag so that is probably confusing the computer also.  Good luck, I hoped this helped and if you need any more help you can ask me again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris G</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/comment-page-1/#comment-35092</link>
		<dc:creator>Chris G</dc:creator>
		<pubDate>Tue, 09 Feb 2010 14:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/#comment-35092</guid>
		<description>Search engines don&#039;t index elements. When the page is spidered the tags would be removed (and possibility the content within the tag ie: &lt;script&gt;) and the straight text parsed and indexed. Otherwise scripts, styles, etc would be indexed and yeild unfavourable results. 

They could however use them to navigate the page and well formed HTML will parse better and yield better results. Image tags could be indexed for image searches and links could be spidered.</description>
		<content:encoded><![CDATA[<p>Search engines don&#039;t index elements. When the page is spidered the tags would be removed (and possibility the content within the tag ie: &lt;script&gt;) and the straight text parsed and indexed. Otherwise scripts, styles, etc would be indexed and yeild unfavourable results. </p>
<p>They could however use them to navigate the page and well formed HTML will parse better and yield better results. Image tags could be indexed for image searches and links could be spidered.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inacious</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/comment-page-1/#comment-25970</link>
		<dc:creator>Inacious</dc:creator>
		<pubDate>Sun, 24 Jan 2010 04:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/create-a-simple-slideshow-using-mootools-part-ii-controls-andevents/#comment-25970</guid>
		<description>Well, the market was closed 1/1/09, remember.</description>
		<content:encoded><![CDATA[<p>Well, the market was closed 1/1/09, remember.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

