<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>agTweener</title><link>http://www.codeplex.com/agTweener/Project/ProjectRss.aspx</link><description>agTweener provides a toolkit for Silverlight designers and developers to achieve animation and transition effects similar to toolkits currently available for Flash&amp;#47;Flex developers by defining trans...</description><item><title>New Post: Silverlight2 final and Flash version</title><link>http://www.codeplex.com/agTweener/Thread/View.aspx?ThreadId=37481</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I've been trying to get this going but I don't seem to have the right stuff...I just installed the RC0 package for VS2008-SP1 and when I try a sample, it kicks me to the Silverlight download page where it tells me that my version is newer than the one asked for...is there a quick fix for that?&lt;br&gt;
&lt;br&gt;
I'm a big fan of the Flash CS3 version of this and was excited to find out about your version for Silverlight...I hope you plan on keeping it updated :)&lt;br&gt;
&lt;br&gt;
In the Flash version, you'd do something like this:&lt;br&gt;
&lt;br&gt;
Tweener.addTween(obj, {x:mywidth, time:1.0, transition:&amp;quot;easeOutCubic&amp;quot;, rounded:true});&lt;br&gt;
&lt;br&gt;
...I don't see any place for putting the duration or the easing type in yours...instead it calls homegrown methods.&amp;nbsp; Do you have any examples that show it being used more like the Flash version?&lt;/p&gt;
&lt;p&gt;Thanks for your efforts!&lt;/p&gt;
&lt;/div&gt;</description><author>budmandave</author><pubDate>Fri, 10 Oct 2008 18:56:00 GMT</pubDate><guid isPermaLink="false">New Post: Silverlight2 final and Flash version 20081010065600P</guid></item><item><title>New Post: Small bug in agTweener</title><link>http://www.codeplex.com/agTweener/Thread/View.aspx?ThreadId=36723</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br&gt;
&lt;br&gt;
First, Great tweening class :)&lt;br&gt;
Found a minor bug:&lt;br&gt;
&lt;br&gt;
When picking for example an elastic tween on a height property (or width), &amp;nbsp;the property will become &amp;lt;0 when tweening to 0 resulting in an error.&lt;br&gt;
This is easily fixed in TweenListItem.cs in&amp;nbsp;public void HandleTick(TimeSpan tickInterval)&lt;br&gt;
&lt;br&gt;
Not sure what properties need to be checked too.. so far i have applied a fix for width, height and opacity&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
Matthijs
&lt;/div&gt;</description><author>mtempels</author><pubDate>Tue, 30 Sep 2008 09:55:27 GMT</pubDate><guid isPermaLink="false">New Post: Small bug in agTweener 20080930095527A</guid></item><item><title>RELEASED: Version 2.1 (Jun 15, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=14398</link><description>&lt;div&gt;
Updated for Silverlight 2 Beta 2&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Sat, 14 Jun 2008 22:53:31 GMT</pubDate><guid isPermaLink="false">RELEASED: Version 2.1 (Jun 15, 2008) 20080614105331P</guid></item><item><title>CREATED RELEASE: Version 2.1 (Jun 15, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=14398</link><description>&lt;div&gt;
Updated for Silverlight 2 Beta 2&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Sat, 14 Jun 2008 22:53:31 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: Version 2.1 (Jun 15, 2008) 20080614105331P</guid></item><item><title>Source code checked in, #12920</title><link>http://www.codeplex.com/agTweener/SourceControl/ListDownloadableCommits.aspx</link><description>Updated for Silverlight Beta 2</description><author>mcameron</author><pubDate>Sat, 14 Jun 2008 22:47:51 GMT</pubDate><guid isPermaLink="false">Source code checked in, #12920 20080614104751P</guid></item><item><title>NEW POST: Update for Beta 2?</title><link>http://www.codeplex.com/agTweener/Thread/View.aspx?ThreadId=29334</link><description>&lt;div style="line-height: normal;"&gt;Hi, the code actually compiles under Beta 2 with no problems.&lt;br&gt;
&lt;br&gt;
However, when you run it, a few errors occur, like setting properties, which are easily fixed.&lt;br&gt;
&lt;br&gt;
The problem is that in the following code, it fails on the casting, and I'm not sure why.&lt;br&gt;
&lt;br&gt;
        internal Transform FindTransform(FrameworkElement target, string transformName)&lt;br&gt;
        {&lt;br&gt;
            if (target.RenderTransform != null)&lt;br&gt;
            {&lt;br&gt;
                if (((&lt;strong&gt;TransformGroup&lt;/strong&gt;)target.RenderTransform).Children.Count &amp;gt; 0)&lt;br&gt;
                {&lt;br&gt;
                    for (int i = 0; i &amp;lt; ((TransformGroup)target.RenderTransform).Children.Count; i++)&lt;br&gt;
                    {&lt;br&gt;
                        if (((TransformGroup)target.RenderTransform).Children[i].GetType().Name == transformName)&lt;br&gt;
                        {&lt;br&gt;
                            return (Transform)((TransformGroup)target.RenderTransform).Children[i];&lt;br&gt;
                        }&lt;br&gt;
                    }&lt;br&gt;
                }&lt;br&gt;
            }&lt;br&gt;
            return null;&lt;br&gt;
        }&lt;br&gt;
&lt;br&gt;
Help!
&lt;/div&gt;</description><author>Dewey</author><pubDate>Mon, 09 Jun 2008 18:39:53 GMT</pubDate><guid isPermaLink="false">NEW POST: Update for Beta 2? 20080609063953P</guid></item><item><title>NEW POST: WPF Tweener</title><link>http://www.codeplex.com/agTweener/Thread/View.aspx?ThreadId=28309</link><description>&lt;div style="line-height: normal;"&gt;Hi All, I've port the agTweener to WPF and ask the creator if he wan't to put my WPF version on codeplex, now I'm waiting is answer.&lt;br&gt;
&lt;/div&gt;</description><author>Doppelganger</author><pubDate>Fri, 23 May 2008 17:52:32 GMT</pubDate><guid isPermaLink="false">NEW POST: WPF Tweener 20080523055232P</guid></item><item><title>NEW POST: Works with WPF?</title><link>http://www.codeplex.com/agTweener/Thread/View.aspx?ThreadId=25935</link><description>&lt;div class="wikidoc"&gt;
Hi there,  I'm not really a developer so I apologize for not being able to put this into perspective on my own... I was wondering whether agTweener could also be implemented in WPF applications.  Tweening is such a great tool for transitions and I'd love to be able to apply it in an application we're working on atm.  &lt;br /&gt;Thanks in advance!&lt;br /&gt; &lt;br /&gt;greetings from the Netherlands,&lt;br /&gt;Adriaan&lt;br /&gt;
&lt;/div&gt;</description><author>leBasson</author><pubDate>Tue, 15 Apr 2008 09:02:15 GMT</pubDate><guid isPermaLink="false">NEW POST: Works with WPF? 20080415090215A</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/agTweener/SourceControl/ListDownloadableCommits.aspx</link><description>Updated for Silverlight 2.0</description><author>mcameron</author><pubDate>Sun, 23 Mar 2008 03:01:48 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080323030148A</guid></item><item><title>RELEASED: Version 2.0 (Mar 23, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=11914</link><description>agTweener and all samples have been updated to support Silverlight 2.0 Beta 1</description><author></author><pubDate>Sun, 23 Mar 2008 02:55:21 GMT</pubDate><guid isPermaLink="false">RELEASED: Version 2.0 (Mar 23, 2008) 20080323025521A</guid></item><item><title>UPDATED RELEASE: Version 2.0 (Mar 23, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=11914</link><description>agTweener and all samples have been updated to support Silverlight 2.0 Beta 1</description><author></author><pubDate>Sun, 23 Mar 2008 02:55:21 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: Version 2.0 (Mar 23, 2008) 20080323025521A</guid></item><item><title>CREATED RELEASE: Version 2.0 (Mar 23, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=11914</link><description>&lt;br /&gt;agTweener and all samples have been updated to support Silverlight 2.0 Beta 1</description><author></author><pubDate>Sun, 23 Mar 2008 02:54:23 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: Version 2.0 (Mar 23, 2008) 20080323025423A</guid></item><item><title>NEW POST: Tweener for Silverlight 2.0 beta</title><link>http://www.codeplex.com/agTweener/Thread/View.aspx?ThreadId=23072</link><description>&lt;div class="wikidoc"&gt;
Hi I'm in the middle of porting this to a working Silverlight 2.0 version. I'm going to be taking it over as is and not do a re-write using new features in 2.0. I'll leave this refactoring for another itteration. &lt;br /&gt;
&lt;/div&gt;</description><author>liquidboy</author><pubDate>Thu, 28 Feb 2008 22:07:44 GMT</pubDate><guid isPermaLink="false">NEW POST: Tweener for Silverlight 2.0 beta 20080228100744P</guid></item><item><title>RELEASED: Version 1.0 (Feb 29, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=11159</link><description>This is the first release of agTweener. The library package contains all source code for the tween functions and classes to interact with a Silverlight canvas.&lt;br /&gt;&lt;br /&gt;Three samples are included, see &amp;#91;url&amp;#58;http&amp;#58;&amp;#47;&amp;#47;home.exetel.com.au&amp;#47;thesandpit&amp;#93; for details.</description><author></author><pubDate>Thu, 28 Feb 2008 14:21:18 GMT</pubDate><guid isPermaLink="false">RELEASED: Version 1.0 (Feb 29, 2008) 20080228022118P</guid></item><item><title>UPDATED RELEASE: Version 1.0 (Feb 29, 2008)</title><link>http://www.codeplex.com/agTweener/Release/ProjectReleases.aspx?ReleaseId=11159</link><description>This is the first release of agTweener. The library package contains all source code for the tween functions and classes to interact with a Silverlight canvas.&lt;br /&gt;&lt;br /&gt;Three samples are included, see &amp;#91;url&amp;#58;http&amp;#58;&amp;#47;&amp;#47;home.exetel.com.au&amp;#47;thesandpit&amp;#93; for details.</description><author></author><pubDate>Thu, 28 Feb 2008 14:21:18 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: Version 1.0 (Feb 29, 2008) 20080228022118P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/agTweener/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;The goal of agTweener is to provide a toolkit for Silverlight designers and developers to achieve animation and transition effects similar to toolkits currently available for Flash&amp;#47;Flex developers.&lt;br /&gt;&lt;br /&gt;agTweener is a c&amp;#35; Silverlight library based on the Tweener Actionscript library for Flash&amp;#47;Flex. A preset list of transition functions based on Robert Penner&amp;#39;s easing equations is available.
&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>mcameron</author><pubDate>Thu, 28 Feb 2008 14:15:40 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080228021540P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/agTweener/SourceControl/ListDownloadableCommits.aspx</link><description>Initial Version</description><author>mcameron</author><pubDate>Thu, 28 Feb 2008 13:24:32 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080228012432P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/agTweener/SourceControl/ListDownloadableCommits.aspx</link><description>Initial version</description><author>mcameron</author><pubDate>Thu, 28 Feb 2008 13:22:00 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080228012200P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/agTweener/SourceControl/ListDownloadableCommits.aspx</link><description>Initial version</description><author>mcameron</author><pubDate>Thu, 28 Feb 2008 13:20:31 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080228012031P</guid></item></channel></rss>