<?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: AS3: TransformManager</title>
	<atom:link href="http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/</link>
	<description>Learn &#38; Interact with the ActionScript World</description>
	<lastBuildDate>Sun, 21 Mar 2010 16:20:04 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mitesh</title>
		<link>http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/comment-page-1/#comment-3430</link>
		<dc:creator>Mitesh</dc:creator>
		<pubDate>Sat, 23 May 2009 10:58:22 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=154#comment-3430</guid>
		<description>Good Very Good.
Thanks to Melvyn as well...</description>
		<content:encoded><![CDATA[<p>Good Very Good.<br />
Thanks to Melvyn as well&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Przybylski</title>
		<link>http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/comment-page-1/#comment-1491</link>
		<dc:creator>Matt Przybylski</dc:creator>
		<pubDate>Tue, 29 Jul 2008 21:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=154#comment-1491</guid>
		<description>I figured Jack would point out the differences rather than me trying to write them all down :P

I do have to add to my original message, however, that I have nothing but the utmost respect for Senocular and his genius coding skills.  He has helped me a bunch of times before on forums and by offering his code to the public and is one of the key reasons why I started to blog the way I do today.  Plus, when he was living in Maryland back in the day, I gave him shit for being so good and not working at a larger company that would give him more exposure.  I&#039;m, like, a prophet... or something.</description>
		<content:encoded><![CDATA[<p>I figured Jack would point out the differences rather than me trying to write them all down <img src='http://evolve.reintroducing.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I do have to add to my original message, however, that I have nothing but the utmost respect for Senocular and his genius coding skills.  He has helped me a bunch of times before on forums and by offering his code to the public and is one of the key reasons why I started to blog the way I do today.  Plus, when he was living in Maryland back in the day, I gave him shit for being so good and not working at a larger company that would give him more exposure.  I&#8217;m, like, a prophet&#8230; or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/comment-page-1/#comment-1490</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Tue, 29 Jul 2008 21:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=154#comment-1490</guid>
		<description>Well, first let me admit that Senocular&#039;s AS3 tool blows my old AS2 one out of the water :-) He&#039;s really quite a code genius and I&#039;ve got nothin&#039; but respect for him.

His AS3 TransformTool differs from my AS3 TransformManager in several ways. His offers skewing and the ability to interactively move the registration point around. Pretty cool. However, my AS3 TransformManager offers a few unique things:

1) Multiple selections  (this was the biggest challenge for me)
2) Easily control transformations via code, like scaleSelection(0.5, 0.8) or rotateSelection(2.8) or moveSelection(30, 490). You could even use TweenLite to change values over time, like TweenLite.to(manager, 2, {selectionScaleX:1.5, selectionScaleY:2});
3) Resize textfields without distorting the text inside of them
4) DELETE/BACKSPACE key functionality
5) Arrow key functionality (for movement)
6) Constrained horizontal/vertical movement with the SHIFT key
7) Documentation

There are probably more differences, but those are a few that came to mind. I&#039;m no expert on his TransformTool either, so some of my assertions above may not be entirely accurate.

Senocular&#039;s tool is very well-built, so if you don&#039;t need the extra features that my AS3 TransformManager offers, heck, why pay for it? But one of my goals is to build stuff that&#039;s very easy to use, and I&#039;d like to think that TransformManager&#039;s price is well worth it when you consider all the time and effort it&#039;ll save you, plus I&#039;m pretty sure it&#039;s the only tool around that offers multiple selections.</description>
		<content:encoded><![CDATA[<p>Well, first let me admit that Senocular&#8217;s AS3 tool blows my old AS2 one out of the water <img src='http://evolve.reintroducing.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  He&#8217;s really quite a code genius and I&#8217;ve got nothin&#8217; but respect for him.</p>
<p>His AS3 TransformTool differs from my AS3 TransformManager in several ways. His offers skewing and the ability to interactively move the registration point around. Pretty cool. However, my AS3 TransformManager offers a few unique things:</p>
<p>1) Multiple selections  (this was the biggest challenge for me)<br />
2) Easily control transformations via code, like scaleSelection(0.5, 0.8) or rotateSelection(2.8) or moveSelection(30, 490). You could even use TweenLite to change values over time, like TweenLite.to(manager, 2, {selectionScaleX:1.5, selectionScaleY:2});<br />
3) Resize textfields without distorting the text inside of them<br />
4) DELETE/BACKSPACE key functionality<br />
5) Arrow key functionality (for movement)<br />
6) Constrained horizontal/vertical movement with the SHIFT key<br />
7) Documentation</p>
<p>There are probably more differences, but those are a few that came to mind. I&#8217;m no expert on his TransformTool either, so some of my assertions above may not be entirely accurate.</p>
<p>Senocular&#8217;s tool is very well-built, so if you don&#8217;t need the extra features that my AS3 TransformManager offers, heck, why pay for it? But one of my goals is to build stuff that&#8217;s very easy to use, and I&#8217;d like to think that TransformManager&#8217;s price is well worth it when you consider all the time and effort it&#8217;ll save you, plus I&#8217;m pretty sure it&#8217;s the only tool around that offers multiple selections.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Przybylski</title>
		<link>http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/comment-page-1/#comment-1481</link>
		<dc:creator>Matt Przybylski</dc:creator>
		<pubDate>Tue, 29 Jul 2008 20:34:46 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=154#comment-1481</guid>
		<description>Hey Melvyn,
I just took a quick look at Senocular&#039;s and it is I think more comparable to Jack&#039;s AS2 TransformManager (which is also free) than his AS3 version.  One thing I noticed right away was that it had no ability to do multiple selections.  Nice tool, nonetheless.</description>
		<content:encoded><![CDATA[<p>Hey Melvyn,<br />
I just took a quick look at Senocular&#8217;s and it is I think more comparable to Jack&#8217;s AS2 TransformManager (which is also free) than his AS3 version.  One thing I noticed right away was that it had no ability to do multiple selections.  Nice tool, nonetheless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melvyn</title>
		<link>http://evolve.reintroducing.com/2008/07/29/as3/as3-transformmanager/comment-page-1/#comment-1480</link>
		<dc:creator>Melvyn</dc:creator>
		<pubDate>Tue, 29 Jul 2008 20:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=154#comment-1480</guid>
		<description>Indeed, Jack Doyle&#039;s Transform Tool looks really good! Never tried it but I use Tweenlite everyday so I assume it rocks too.
But I&#039;d like to mention the tool I use from Senocular (AS3), which apparently does exactly the same job, and is totally free. It&#039;s quite easy to customize and extend.
 
http://www.senocular.com/demo/TransformToolAS3/TransformTool.html
and an example for Flex: http://joelhooks.com/examples/transformTool/

ps: Thank you Matt for all your classes! It saved me some hours of work a few times :)</description>
		<content:encoded><![CDATA[<p>Indeed, Jack Doyle&#8217;s Transform Tool looks really good! Never tried it but I use Tweenlite everyday so I assume it rocks too.<br />
But I&#8217;d like to mention the tool I use from Senocular (AS3), which apparently does exactly the same job, and is totally free. It&#8217;s quite easy to customize and extend.</p>
<p><a href="http://www.senocular.com/demo/TransformToolAS3/TransformTool.html" rel="nofollow">http://www.senocular.com/demo/TransformToolAS3/TransformTool.html</a><br />
and an example for Flex: <a href="http://joelhooks.com/examples/transformTool/" rel="nofollow">http://joelhooks.com/examples/transformTool/</a></p>
<p>ps: Thank you Matt for all your classes! It saved me some hours of work a few times <img src='http://evolve.reintroducing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
