<?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"
	>
<channel>
	<title>Comments on: ScrollBox.js</title>
	<atom:link href="http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/feed/" rel="self" type="application/rss+xml" />
	<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/</link>
	<description>Except for you.  You read it.</description>
	<pubDate>Thu, 20 Nov 2008 14:31:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-bleeding</generator>
		<item>
		<title>By: Dave Grijalva</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-45851</link>
		<dc:creator>Dave Grijalva</dc:creator>
		<pubDate>Wed, 05 Nov 2008 01:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-45851</guid>
		<description>@gka

Good catch!  I haven't tested in Opera.  Is there a good reason to use the browser string instead of looking for window.opera?</description>
		<content:encoded><![CDATA[<p>@gka</p>
<p>Good catch!  I haven&#8217;t tested in Opera.  Is there a good reason to use the browser string instead of looking for window.opera?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Grijalva</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-45849</link>
		<dc:creator>Dave Grijalva</dc:creator>
		<pubDate>Wed, 05 Nov 2008 01:12:23 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-45849</guid>
		<description>@Andy

There is an example implementation included in the download, which does work.  Remember when linking to images from a CSS include that they are relative to the CSS file, not the including document.</description>
		<content:encoded><![CDATA[<p>@Andy</p>
<p>There is an example implementation included in the download, which does work.  Remember when linking to images from a CSS include that they are relative to the CSS file, not the including document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-40466</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 29 Sep 2008 11:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-40466</guid>
		<description>I have spent several hours trying to customize this but any styles applied to the .scrollbox_scrollbar, .scrollbox_up_button and .scrollbox_handle seem to have no effect. Even the included graphics for the up and down buttons are not loading.

I can't figure out what is causing this. Must be something hard coded into the js?

Can't waste anymore time on this unfortunately. If I can't customize the scroll area, its useless to me.</description>
		<content:encoded><![CDATA[<p>I have spent several hours trying to customize this but any styles applied to the .scrollbox_scrollbar, .scrollbox_up_button and .scrollbox_handle seem to have no effect. Even the included graphics for the up and down buttons are not loading.</p>
<p>I can&#8217;t figure out what is causing this. Must be something hard coded into the js?</p>
<p>Can&#8217;t waste anymore time on this unfortunately. If I can&#8217;t customize the scroll area, its useless to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Grijalva</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-39971</link>
		<dc:creator>Dave Grijalva</dc:creator>
		<pubDate>Fri, 26 Sep 2008 10:30:34 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-39971</guid>
		<description>This project is now hosted on github.  Feel free to fork and modify.  I'd love to see how others can improve this codebase.

http://github.com/dgrijalva/scrollbox.js</description>
		<content:encoded><![CDATA[<p>This project is now hosted on github.  Feel free to fork and modify.  I&#8217;d love to see how others can improve this codebase.</p>
<p><a href="http://github.com/dgrijalva/scrollbox.js" rel="nofollow">http://github.com/dgrijalva/scrollbox.js</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gka</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-39342</link>
		<dc:creator>gka</dc:creator>
		<pubDate>Mon, 22 Sep 2008 11:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-39342</guid>
		<description>There's a small bug. The scroll wheel direction is inverted in Opera. I fixed this:

old line 252: this.scrollUp();
new line 252: if (navigator.appName.toLowerCase().indexOf("opera") &#60; 0) this.scrollUp(); else this.scrollDown();

old line 260: this.scrollDown();
new line 260: if (navigator.appName.toLowerCase().indexOf("opera") &#60; 0) this.scrollDown(); else this.scrollUp();</description>
		<content:encoded><![CDATA[<p>There&#8217;s a small bug. The scroll wheel direction is inverted in Opera. I fixed this:</p>
<p>old line 252: this.scrollUp();<br />
new line 252: if (navigator.appName.toLowerCase().indexOf(&#8221;opera&#8221;) &lt; 0) this.scrollUp(); else this.scrollDown();</p>
<p>old line 260: this.scrollDown();<br />
new line 260: if (navigator.appName.toLowerCase().indexOf(&#8221;opera&#8221;) &lt; 0) this.scrollDown(); else this.scrollUp();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Grijalva</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-37454</link>
		<dc:creator>Dave Grijalva</dc:creator>
		<pubDate>Fri, 05 Sep 2008 11:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-37454</guid>
		<description>There's a working demo in the download.  Someday, I'll get around to putting one up on this page, but today is not that day.  Just download the zip and open up the html file in your browser.</description>
		<content:encoded><![CDATA[<p>There&#8217;s a working demo in the download.  Someday, I&#8217;ll get around to putting one up on this page, but today is not that day.  Just download the zip and open up the html file in your browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bohdan</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-34844</link>
		<dc:creator>Bohdan</dc:creator>
		<pubDate>Wed, 20 Aug 2008 01:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-34844</guid>
		<description>Where are demo or Examples?</description>
		<content:encoded><![CDATA[<p>Where are demo or Examples?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mocambo</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-27884</link>
		<dc:creator>mocambo</dc:creator>
		<pubDate>Sun, 29 Jun 2008 00:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-27884</guid>
		<description>Great and useful script only ...
... for reaching ideal case - smooth scrolling (animated scrolling) needed on up/down button and scrollbar blank part click. Not tested yet how it acts on contents change in .scrollbox_content.</description>
		<content:encoded><![CDATA[<p>Great and useful script only &#8230;<br />
&#8230; for reaching ideal case - smooth scrolling (animated scrolling) needed on up/down button and scrollbar blank part click. Not tested yet how it acts on contents change in .scrollbox_content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Grijalva</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-25856</link>
		<dc:creator>Dave Grijalva</dc:creator>
		<pubDate>Fri, 13 Jun 2008 05:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-25856</guid>
		<description>I'm working on replacing wordpress for this site.  Once the new site goes up, I'll include demos.</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on replacing wordpress for this site.  Once the new site goes up, I&#8217;ll include demos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A. Bonhomme</title>
		<link>http://theblogthatnoonereads.tunasoft.com/2007/04/08/scrollbox_js/#comment-24967</link>
		<dc:creator>A. Bonhomme</dc:creator>
		<pubDate>Wed, 04 Jun 2008 01:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://theblogthatnoonereads.tunasoft.com/scrollbox_js/#comment-24967</guid>
		<description>Any chance you could put up an example up that is viewable without downloading?</description>
		<content:encoded><![CDATA[<p>Any chance you could put up an example up that is viewable without downloading?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
