<?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: JavaScript Tween function</title>
	<atom:link href="http://www.kadimi.com/en/javascript-tween-function-368/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kadimi.com/en/javascript-tween-function-368</link>
	<description>Blog &#38; Free Tech Support</description>
	<lastBuildDate>Tue, 27 Jul 2010 06:01:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Nabil</title>
		<link>http://www.kadimi.com/en/javascript-tween-function-368/comment-page-1#comment-68</link>
		<dc:creator>Nabil</dc:creator>
		<pubDate>Wed, 26 May 2010 19:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.kadimi.com/en/?p=368#comment-68</guid>
		<description>I wrote that on purpose, this doesn&#039;t hurt but sure there is a better way to write it.

Actually I should have wrote a comment to remember me why I coded it that way... oops.

But the way, I forgot to tell you that I was very busy with my personal life, I apologize for not responding to your comments/requests earlier.</description>
		<content:encoded><![CDATA[<p>I wrote that on purpose, this doesn&#8217;t hurt but sure there is a better way to write it.</p>
<p>Actually I should have wrote a comment to remember me why I coded it that way&#8230; oops.</p>
<p>But the way, I forgot to tell you that I was very busy with my personal life, I apologize for not responding to your comments/requests earlier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nabil</title>
		<link>http://www.kadimi.com/en/javascript-tween-function-368/comment-page-1#comment-67</link>
		<dc:creator>Nabil</dc:creator>
		<pubDate>Wed, 26 May 2010 18:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.kadimi.com/en/?p=368#comment-67</guid>
		<description>Thank you for your interest, this small library is a draft and I will put more effort on improving if I see that people like you are willing to support it by providing bug reports and feedback.

I posted the full version of the function and I will - in the near future - have a repository and a bug tracker.</description>
		<content:encoded><![CDATA[<p>Thank you for your interest, this small library is a draft and I will put more effort on improving if I see that people like you are willing to support it by providing bug reports and feedback.</p>
<p>I posted the full version of the function and I will &#8211; in the near future &#8211; have a repository and a bug tracker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bowey</title>
		<link>http://www.kadimi.com/en/javascript-tween-function-368/comment-page-1#comment-63</link>
		<dc:creator>Peter Bowey</dc:creator>
		<pubDate>Fri, 14 May 2010 12:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.kadimi.com/en/?p=368#comment-63</guid>
		<description>Notes: The two (original) failed &#039;if&#039; conditionals occur on the following code:

1) if (tw[f][&quot;from_orig&quot;] === &#039;current&#039;);    // line 53 
2) if (typeof(a) == &quot;object&quot;);               // line 155

There is no &#039;TRUE&#039; state code to execute after either of the above condtions. Note the semicolon; ending each condition

Peter Bowey</description>
		<content:encoded><![CDATA[<p>Notes: The two (original) failed &#8216;if&#8217; conditionals occur on the following code:</p>
<p>1) if (tw[f]["from_orig"] === &#8216;current&#8217;);    // line 53<br />
2) if (typeof(a) == &#8220;object&#8221;);               // line 155</p>
<p>There is no &#8216;TRUE&#8217; state code to execute after either of the above condtions. Note the semicolon; ending each condition</p>
<p>Peter Bowey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bowey</title>
		<link>http://www.kadimi.com/en/javascript-tween-function-368/comment-page-1#comment-61</link>
		<dc:creator>Peter Bowey</dc:creator>
		<pubDate>Fri, 14 May 2010 11:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.kadimi.com/en/?p=368#comment-61</guid>
		<description>Thanks Kadimi for sharing this tween() javascript function:

I have taken the original &#039;minimized&#039; tween() js code and expanded it back to a human readable source. I have corrected some JSLint issues presented with code and additionally corrected two js &#039;if conditionals&#039; that had no &#039;TRUE&#039; state code to execute. I think this code you have created is educational in human readable code format:

&gt;-------------------------------------&lt;
&lt;code&gt;

// Use:   tween(element, property, from, to, duration, [optional] function)
// Where: element: ID of HTML element, property: CSS property for tween&#039;ing, from: initial value, to: final value

var fps = 40;
var debugging = 0;
var tw = [];
[...] code removed by Nabil Kadimi
&lt;code&gt;
&gt;-------------------------------------&lt;

Peter Bowey</description>
		<content:encoded><![CDATA[<p>Thanks Kadimi for sharing this tween() javascript function:</p>
<p>I have taken the original &#8216;minimized&#8217; tween() js code and expanded it back to a human readable source. I have corrected some JSLint issues presented with code and additionally corrected two js &#8216;if conditionals&#8217; that had no &#8216;TRUE&#8217; state code to execute. I think this code you have created is educational in human readable code format:</p>
<p>&gt;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&lt;<br />
<code></p>
<p>// Use:   tween(element, property, from, to, duration, [optional] function)<br />
// Where: element: ID of HTML element, property: CSS property for tween'ing, from: initial value, to: final value</p>
<p>var fps = 40;<br />
var debugging = 0;<br />
var tw = [];<br />
[...] code removed by Nabil Kadimi<br />
</code><code><br />
&gt;-------------------------------------&lt;</p>
<p>Peter Bowey</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
