<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: ProtoFlow Updated - Better Captions &#038; Image Reflection!</title>
	<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/</link>
	<description>Deensoft blog</description>
	<pubDate>Wed, 10 Mar 2010 02:21:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: Free Javascript Web Gallery Solutions &#124; Design Dazzling</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-17909</link>
		<dc:creator>Free Javascript Web Gallery Solutions &#124; Design Dazzling</dc:creator>
		<pubDate>Mon, 21 Dec 2009 17:24:34 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-17909</guid>
		<description>[...] ProtoFlow - ProtoFlow mimics the cover flow effect that you would find in iTunes, the iPhone, and other Apple products. In addition to the ProtoFlow JS and CSS file, it also uses three additional external JavaScript files &#8211; Prototype and script.aculo.us and Reflection.js &#8211; so make sure you&#8217;re willing to pay the price in page weight, additional HTTP requests, and potential decrease in page load times due to the above reasons. ProtoFlow demo [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] ProtoFlow - ProtoFlow mimics the cover flow effect that you would find in iTunes, the iPhone, and other Apple products. In addition to the ProtoFlow JS and CSS file, it also uses three additional external JavaScript files &#8211; Prototype and script.aculo.us and Reflection.js &#8211; so make sure you&#8217;re willing to pay the price in page weight, additional HTTP requests, and potential decrease in page load times due to the above reasons. ProtoFlow demo [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 16 Free JavaScript Solutions for Displaying Your Images &#124; 9Tricks.Com - Tips - Tricks - Tutorials</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-16657</link>
		<dc:creator>16 Free JavaScript Solutions for Displaying Your Images &#124; 9Tricks.Com - Tips - Tricks - Tutorials</dc:creator>
		<pubDate>Sat, 03 Oct 2009 03:27:22 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-16657</guid>
		<description>[...] 13. ProtoFlow [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 13. ProtoFlow [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich Mehta</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-16362</link>
		<dc:creator>Rich Mehta</dc:creator>
		<pubDate>Wed, 02 Sep 2009 11:52:52 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-16362</guid>
		<description>Hey,
I'm currently building our website making prominent use of your ProtoFlow code. I'm setting it to autoPlay and noticed that the first element was never retrieved after the first run through. I checked out the code and noticed around line 222 the script sends us bak to element 1 and immediately increments the counter. 

In order to fix this, I ammended the code slightly. This:

	/**
	 * Function: autoPlay
	 * 
	 * Internal function that is used to scroll through the list automatically
	 */
    autoPlay: function(){
        if ((this.currIndex + 2) &#62; this.stackCount) {
            this.currIndex = 0;
        }
        this.currIndex = this.currIndex + 1
        this.goTo(this.currIndex);
    },

Became this:

	/**
	 * Function: autoPlay
	 * 
	 * Internal function that is used to scroll through the list automatically
	 */
    autoPlay: function(){
		/*
		* Was off by one, ammended.
		*/
        if ((this.currIndex + 2) &#62; this.stackCount) {
            this.currIndex = -1;
        }

		if(this.currIndex &#60; this.stackCount - 1) {
        	this.currIndex = this.currIndex + 1;
			this.goTo(this.currIndex);
		} else {
			this.goTo(0);
		}
        
    },

It's working for me now, but I think there's a couple of unnecessary lines (due to tinkering) in my example. Still, I'm happy it works.

Thanks for the great work guys, I'm really impressed with what you've done and how simply you've done it. Good job.

Rich</description>
		<content:encoded><![CDATA[<p>Hey,<br />
I&#8217;m currently building our website making prominent use of your ProtoFlow code. I&#8217;m setting it to autoPlay and noticed that the first element was never retrieved after the first run through. I checked out the code and noticed around line 222 the script sends us bak to element 1 and immediately increments the counter. </p>
<p>In order to fix this, I ammended the code slightly. This:</p>
<p>	/**<br />
	 * Function: autoPlay<br />
	 *<br />
	 * Internal function that is used to scroll through the list automatically<br />
	 */<br />
    autoPlay: function(){<br />
        if ((this.currIndex + 2) &gt; this.stackCount) {<br />
            this.currIndex = 0;<br />
        }<br />
        this.currIndex = this.currIndex + 1<br />
        this.goTo(this.currIndex);<br />
    },</p>
<p>Became this:</p>
<p>	/**<br />
	 * Function: autoPlay<br />
	 *<br />
	 * Internal function that is used to scroll through the list automatically<br />
	 */<br />
    autoPlay: function(){<br />
		/*<br />
		* Was off by one, ammended.<br />
		*/<br />
        if ((this.currIndex + 2) &gt; this.stackCount) {<br />
            this.currIndex = -1;<br />
        }</p>
<p>		if(this.currIndex &lt; this.stackCount - 1) {<br />
        	this.currIndex = this.currIndex + 1;<br />
			this.goTo(this.currIndex);<br />
		} else {<br />
			this.goTo(0);<br />
		}</p>
<p>    },</p>
<p>It&#8217;s working for me now, but I think there&#8217;s a couple of unnecessary lines (due to tinkering) in my example. Still, I&#8217;m happy it works.</p>
<p>Thanks for the great work guys, I&#8217;m really impressed with what you&#8217;ve done and how simply you&#8217;ve done it. Good job.</p>
<p>Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Janne</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-12965</link>
		<dc:creator>Janne</dc:creator>
		<pubDate>Tue, 05 May 2009 22:53:07 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-12965</guid>
		<description>Hi there! I noticed that the reflection gradient (or shadow?) in Protoflow navigation is no longer working in Safari 4? I have been looking at the code but couldn't yet find out where this is defined and where i'd need to change this. If you have any advice or ideas, i would appreciate it.
Cheers!</description>
		<content:encoded><![CDATA[<p>Hi there! I noticed that the reflection gradient (or shadow?) in Protoflow navigation is no longer working in Safari 4? I have been looking at the code but couldn&#8217;t yet find out where this is defined and where i&#8217;d need to change this. If you have any advice or ideas, i would appreciate it.<br />
Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Obaid</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8714</link>
		<dc:creator>Obaid</dc:creator>
		<pubDate>Mon, 06 Oct 2008 15:06:11 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8714</guid>
		<description>Hi Steve,

The script can be modified to work with any HTML element. In fact, it was like that in the early version of the script before we decided to restrict the functionality to images only since that's what made sense. 

With a small effort the script can be modified to handle any HTML element. Maybe a UL with bunch of LI's that are managed?</description>
		<content:encoded><![CDATA[<p>Hi Steve,</p>
<p>The script can be modified to work with any HTML element. In fact, it was like that in the early version of the script before we decided to restrict the functionality to images only since that&#8217;s what made sense. </p>
<p>With a small effort the script can be modified to handle any HTML element. Maybe a UL with bunch of LI&#8217;s that are managed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8708</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 06 Oct 2008 08:46:39 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8708</guid>
		<description>Is there any way that this can be modified to work with divs instead of images? I know it sounds like a bit of an odd idea, but i think that this may be a viable alternative to making a website in flash that has the same effect.

To have the navigation seperate, so you dont click on the divs themselves but on a link, and then that link brings the relevant div to the front is what I was thinking.

For search engine indexing, images of each "page" would not really be a workable solution.

any ideas?</description>
		<content:encoded><![CDATA[<p>Is there any way that this can be modified to work with divs instead of images? I know it sounds like a bit of an odd idea, but i think that this may be a viable alternative to making a website in flash that has the same effect.</p>
<p>To have the navigation seperate, so you dont click on the divs themselves but on a link, and then that link brings the relevant div to the front is what I was thinking.</p>
<p>For search engine indexing, images of each &#8220;page&#8221; would not really be a workable solution.</p>
<p>any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 16 Free JavaScript Solutions for Displaying Your Images : NguyenVanChieu</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8341</link>
		<dc:creator>16 Free JavaScript Solutions for Displaying Your Images : NguyenVanChieu</dc:creator>
		<pubDate>Sun, 14 Sep 2008 14:37:06 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8341</guid>
		<description>[...] 13. ProtoFlow [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 13. ProtoFlow [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 16 Free JavaScript Solutions for Displaying Your Images &#171; Jonsunhee&#8217;s Weblog</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8111</link>
		<dc:creator>16 Free JavaScript Solutions for Displaying Your Images &#171; Jonsunhee&#8217;s Weblog</dc:creator>
		<pubDate>Fri, 29 Aug 2008 08:09:34 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8111</guid>
		<description>[...] 13. ProtoFlow [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 13. ProtoFlow [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javascript Image Galleries Collection &#124; Net Feast</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8091</link>
		<dc:creator>Javascript Image Galleries Collection &#124; Net Feast</dc:creator>
		<pubDate>Tue, 26 Aug 2008 06:38:31 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-8091</guid>
		<description>[...] 13. ProtoFlow [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 13. ProtoFlow [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mat</title>
		<link>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-7252</link>
		<dc:creator>mat</dc:creator>
		<pubDate>Fri, 04 Jul 2008 13:33:30 +0000</pubDate>
		<guid>http://blog.deensoft.com/2008/03/13/protoflow-updated-better-captions-image-reflection/#comment-7252</guid>
		<description>Just a quick question,

how can I make the caption text smaller? Way to big for what I need...

Thanks</description>
		<content:encoded><![CDATA[<p>Just a quick question,</p>
<p>how can I make the caption text smaller? Way to big for what I need&#8230;</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
