<?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: Simple Carousel With Paging Using Mootools</title>
	<atom:link href="http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/feed/" rel="self" type="application/rss+xml" />
	<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/</link>
	<description>User Interface : just another, but a serious developers weblog</description>
	<lastBuildDate>Fri, 16 Dec 2011 09:21:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: carter</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-10235</link>
		<dc:creator>carter</dc:creator>
		<pubDate>Thu, 05 Aug 2010 18:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-10235</guid>
		<description>Is there is an easy way to make this auto play?</description>
		<content:encoded><![CDATA[<p>Is there is an easy way to make this auto play?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balu</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-10139</link>
		<dc:creator>Balu</dc:creator>
		<pubDate>Sun, 01 Aug 2010 15:27:44 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-10139</guid>
		<description>Sorry, that has to be Math.ceil() :-)</description>
		<content:encoded><![CDATA[<p>Sorry, that has to be Math.ceil() <img src='http://developer.expressionz.in/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balu</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-10138</link>
		<dc:creator>Balu</dc:creator>
		<pubDate>Sun, 01 Aug 2010 15:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-10138</guid>
		<description>So, you are using mootools, but still set width, number, etc. of the items manually. May I suggest something like this:

carouselItems = $$(&#039;.carousel1_items&#039;);
c1_w = carouselItems[0].getSize().x; //  Carousal Item Width
c1_n = carouselItems.length;         // Total Number of Carousal Items
c1_pp = $(&#039;carousel1_wrapper&#039;).getSize().x/c1_w;  // Number of  Carousal Items  perpage

Also parseInt() might be the wrong calculation that makes you miss a slide. Better use ceil():

var c1_ns =  ceil(((c1_w * c1_n)/c1_sss)); //ns= number of slides 

I&#039;m not using the marginFactor at the moment, but you might be able to calculate that too ;).</description>
		<content:encoded><![CDATA[<p>So, you are using mootools, but still set width, number, etc. of the items manually. May I suggest something like this:</p>
<p>carouselItems = $$(&#8216;.carousel1_items&#8217;);<br />
c1_w = carouselItems[0].getSize().x; //  Carousal Item Width<br />
c1_n = carouselItems.length;         // Total Number of Carousal Items<br />
c1_pp = $(&#8216;carousel1_wrapper&#8217;).getSize().x/c1_w;  // Number of  Carousal Items  perpage</p>
<p>Also parseInt() might be the wrong calculation that makes you miss a slide. Better use ceil():</p>
<p>var c1_ns =  ceil(((c1_w * c1_n)/c1_sss)); //ns= number of slides </p>
<p>I&#8217;m not using the marginFactor at the moment, but you might be able to calculate that too <img src='http://developer.expressionz.in/blogs/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-6287</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Sat, 16 Jan 2010 00:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-6287</guid>
		<description>How can I change the positioning of the pagination? I want it to be in the upper right corner, but I don&#039;t want to use absolute or fixed positioning in css.</description>
		<content:encoded><![CDATA[<p>How can I change the positioning of the pagination? I want it to be in the upper right corner, but I don&#8217;t want to use absolute or fixed positioning in css.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kovi</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-3382</link>
		<dc:creator>kovi</dc:creator>
		<pubDate>Sun, 09 Aug 2009 19:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-3382</guid>
		<description>Hi,

this is really a good one, but when I use the JS from http://mootools.net/download (because of some other effects, I&#039;m using) instead of your mootools12_all_p.js it stops working... how can i fix this? thanks a lot.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>this is really a good one, but when I use the JS from <a href="http://mootools.net/download" rel="nofollow">http://mootools.net/download</a> (because of some other effects, I&#8217;m using) instead of your mootools12_all_p.js it stops working&#8230; how can i fix this? thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikhil</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-2516</link>
		<dc:creator>Nikhil</dc:creator>
		<pubDate>Sun, 21 Jun 2009 12:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-2516</guid>
		<description>feel free to use  as you like it ....</description>
		<content:encoded><![CDATA[<p>feel free to use  as you like it &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorge</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-2205</link>
		<dc:creator>jorge</dc:creator>
		<pubDate>Thu, 11 Jun 2009 02:56:21 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-2205</guid>
		<description>thanks for this, your work is awesome. btw, what&#039;s the license info on your code? i&#039;d like to use this in a plugin i&#039;m working on and i wanna know if it&#039;s ok</description>
		<content:encoded><![CDATA[<p>thanks for this, your work is awesome. btw, what&#8217;s the license info on your code? i&#8217;d like to use this in a plugin i&#8217;m working on and i wanna know if it&#8217;s ok</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Blakey</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-2149</link>
		<dc:creator>Adam Blakey</dc:creator>
		<pubDate>Thu, 04 Jun 2009 10:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-2149</guid>
		<description>Hi,

Please can you tell me how i make this auto play?

Cheers, Adam</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Please can you tell me how i make this auto play?</p>
<p>Cheers, Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matthew</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-632</link>
		<dc:creator>matthew</dc:creator>
		<pubDate>Sat, 14 Feb 2009 06:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-632</guid>
		<description>sorry that&#039;s mortal.matt (at) gmail (dot) com, thanks again :)</description>
		<content:encoded><![CDATA[<p>sorry that&#8217;s mortal.matt (at) gmail (dot) com, thanks again <img src='http://developer.expressionz.in/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matthew</title>
		<link>http://developer.expressionz.in/blogs/2008/12/09/simple-carousel-with-paging-using-mootools/comment-page-1/#comment-631</link>
		<dc:creator>matthew</dc:creator>
		<pubDate>Sat, 14 Feb 2009 06:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://developer.expressionz.in/blogs/?p=47#comment-631</guid>
		<description>hey, nice job :) can someone tell me how i can do this paging in mootools 1.1? i haven&#039;t moved to 1.2 yet.
thanks :)
mortal.matt  gmail</description>
		<content:encoded><![CDATA[<p>hey, nice job <img src='http://developer.expressionz.in/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  can someone tell me how i can do this paging in mootools 1.1? i haven&#8217;t moved to 1.2 yet.<br />
thanks <img src='http://developer.expressionz.in/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
mortal.matt  gmail</p>
]]></content:encoded>
	</item>
</channel>
</rss>

