<?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: Finally&#8230;</title>
	<atom:link href="http://zehfernando.com/2007/finally/feed/" rel="self" type="application/rss+xml" />
	<link>http://zehfernando.com/2007/finally/</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 18:53:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: LEE</title>
		<link>http://zehfernando.com/2007/finally/comment-page-1/#comment-440</link>
		<dc:creator>LEE</dc:creator>
		<pubDate>Wed, 08 Aug 2007 17:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://labs.zeh.com.br/blog/?p=116#comment-440</guid>
		<description>having thoroughly enjoyed the Moock&#039;s EA2, I expected this book to cover a bit more of the new toys found in AS3.  It seems to lack quite a bit.

I definitely recommend picking up the Cookbook, and Design Patterns to round out AS3 subject matter.  If I remember correctly Moock&#039;s EA3 didn&#039;t even touch RegExp, remoting, and something else I was looking for at the time.

Oh well, it&#039;s still a must-have, and we&#039;ll never quite be weaned of the Flash Help Menu entirely  = ]</description>
		<content:encoded><![CDATA[<p>having thoroughly enjoyed the Moock&#8217;s EA2, I expected this book to cover a bit more of the new toys found in AS3.  It seems to lack quite a bit.</p>
<p>I definitely recommend picking up the Cookbook, and Design Patterns to round out AS3 subject matter.  If I remember correctly Moock&#8217;s EA3 didn&#8217;t even touch RegExp, remoting, and something else I was looking for at the time.</p>
<p>Oh well, it&#8217;s still a must-have, and we&#8217;ll never quite be weaned of the Flash Help Menu entirely  = ]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeh</title>
		<link>http://zehfernando.com/2007/finally/comment-page-1/#comment-439</link>
		<dc:creator>Zeh</dc:creator>
		<pubDate>Tue, 07 Aug 2007 02:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://labs.zeh.com.br/blog/?p=116#comment-439</guid>
		<description>Amit: I&#039;m not sure I would have anything useful to share. I do have my AS2 &quot;templates&quot; I use, as well as some conventions. But for AS3 I&#039;m mainly porting things over, and still lacking a bit - ie, i don&#039;t have a template of my own that enables ExpressInstall with SWFObject and SWFAddress optionally and anything like that. All the code I had to do up to this day was either experimental/local (no loading) or plain direct porting (Tweener), so I don&#039;t have a very robust site template. I haven&#039;t done any commercial AS3 site yet. I&#039;ve been assembling some things I believe will be awesome for my future AS3 development, but they&#039;re still just experimental.

All I can say is that I do now is have an index/loader document (index.fla) with a class (Index.as) and the loaded document (main.fla) with a class (Main.as) that does the basic website funcionality. Which, funny enough, is a depart on how I did things on most of my AS2  projects (where I used single fla files). I assumed it&#039;d just be easier to load the second SWF instead of having to do tricks to manage attachable movieclips, sounds and class loading on different frames.

Josh, Omine: my biggest problem was with migration. The documentation exists, but some things are barely mentioned and leave a lot to be desired, on my experience.

When porting my knowledge, I&#039;ve been mainly using the migration table:
http://livedocs.adobe.com/flex/2/langref/migration.html

And then the livedocs:
http://livedocs.adobe.com/flex/2/langref/

To cite a few examples. Once I wanted to port some of my code that created sounds on AS2 to AS3. The attachSound() method is removed, and the solution supplied by the migration table is &quot;Create an instance of a Sound subclass that is associated with sound data; for example, by using new Sound() instead&quot;.

The problem is that it&#039;s a no-solution; it only makes sense if you already know the answer, otherwise it&#039;s just a puzzle. You visit the online documentation for Sound() and it doesn&#039;t mention how to attach a sound from the library. I tried a lot of different things with no luck; I had to search the web for a solution. Luckily, I found similar complains on the flashcoders archive, and the solution was there. It turns out the new method - instantiating from the new sound subclass directly - is much better, but i had to go out of the official documentation to find it because the existing documentation was cryptic at best.

Other example that just happened a couple of days ago with me is that I needed to use attachBitmap() to add a new bitmap to the stage. Of course that method was removed, so I visited the migration page to see the solution, and it says &quot;In ActionScript 3.0, use addChild() to add child display objects&quot;. Gee, obvious enough, but then I use addChild(bitmapData) and just got a weird error. Looking at it now, the documentation for BitmapData does provide an example that does it (using a new Bitmap() instance), but the example is so convoluted I searched somewhere else before parsing through it first; so again, I found the answer somewhere else. In that case, smaller, more straightforward examples would be better.

All in all, I have nothing against the new version of the language. I like it a lot; both changes I mentioned are for the better and the API is a lot more natural. I wouldn&#039;t recommend anyone taking AS2 over AS3 now. But I do feel the documentation misses a lot, specially when migrating. These were just two examples, but there are too many answers that are left unanswered or that keep me dumbfounded, and the reason why I think a guidance from scratch (with a book like Moock&#039;s EAS3) is a better option. And I&#039;m usually the guy that hates any kind of guidance and just assume that documentation is more than what anyone should need.

So I use online and local (CS3) docs when searching for the answers, and when that fail, google. However, it was too often that I found the answer lying somewhere else than Adobe&#039;s own material, even for simple stuff like the sound attaching.

The asdoc-ish format is great. My personal frustration is with how much the content lacks from a &#039;migrator&#039; point of view, not with the form it has.</description>
		<content:encoded><![CDATA[<p>Amit: I&#8217;m not sure I would have anything useful to share. I do have my AS2 &#8220;templates&#8221; I use, as well as some conventions. But for AS3 I&#8217;m mainly porting things over, and still lacking a bit &#8211; ie, i don&#8217;t have a template of my own that enables ExpressInstall with SWFObject and SWFAddress optionally and anything like that. All the code I had to do up to this day was either experimental/local (no loading) or plain direct porting (Tweener), so I don&#8217;t have a very robust site template. I haven&#8217;t done any commercial AS3 site yet. I&#8217;ve been assembling some things I believe will be awesome for my future AS3 development, but they&#8217;re still just experimental.</p>
<p>All I can say is that I do now is have an index/loader document (index.fla) with a class (Index.as) and the loaded document (main.fla) with a class (Main.as) that does the basic website funcionality. Which, funny enough, is a depart on how I did things on most of my AS2  projects (where I used single fla files). I assumed it&#8217;d just be easier to load the second SWF instead of having to do tricks to manage attachable movieclips, sounds and class loading on different frames.</p>
<p>Josh, Omine: my biggest problem was with migration. The documentation exists, but some things are barely mentioned and leave a lot to be desired, on my experience.</p>
<p>When porting my knowledge, I&#8217;ve been mainly using the migration table:<br />
<a href="http://livedocs.adobe.com/flex/2/langref/migration.html" rel="nofollow">http://livedocs.adobe.com/flex/2/langref/migration.html</a></p>
<p>And then the livedocs:<br />
<a href="http://livedocs.adobe.com/flex/2/langref/" rel="nofollow">http://livedocs.adobe.com/flex/2/langref/</a></p>
<p>To cite a few examples. Once I wanted to port some of my code that created sounds on AS2 to AS3. The attachSound() method is removed, and the solution supplied by the migration table is &#8220;Create an instance of a Sound subclass that is associated with sound data; for example, by using new Sound() instead&#8221;.</p>
<p>The problem is that it&#8217;s a no-solution; it only makes sense if you already know the answer, otherwise it&#8217;s just a puzzle. You visit the online documentation for Sound() and it doesn&#8217;t mention how to attach a sound from the library. I tried a lot of different things with no luck; I had to search the web for a solution. Luckily, I found similar complains on the flashcoders archive, and the solution was there. It turns out the new method &#8211; instantiating from the new sound subclass directly &#8211; is much better, but i had to go out of the official documentation to find it because the existing documentation was cryptic at best.</p>
<p>Other example that just happened a couple of days ago with me is that I needed to use attachBitmap() to add a new bitmap to the stage. Of course that method was removed, so I visited the migration page to see the solution, and it says &#8220;In ActionScript 3.0, use addChild() to add child display objects&#8221;. Gee, obvious enough, but then I use addChild(bitmapData) and just got a weird error. Looking at it now, the documentation for BitmapData does provide an example that does it (using a new Bitmap() instance), but the example is so convoluted I searched somewhere else before parsing through it first; so again, I found the answer somewhere else. In that case, smaller, more straightforward examples would be better.</p>
<p>All in all, I have nothing against the new version of the language. I like it a lot; both changes I mentioned are for the better and the API is a lot more natural. I wouldn&#8217;t recommend anyone taking AS2 over AS3 now. But I do feel the documentation misses a lot, specially when migrating. These were just two examples, but there are too many answers that are left unanswered or that keep me dumbfounded, and the reason why I think a guidance from scratch (with a book like Moock&#8217;s EAS3) is a better option. And I&#8217;m usually the guy that hates any kind of guidance and just assume that documentation is more than what anyone should need.</p>
<p>So I use online and local (CS3) docs when searching for the answers, and when that fail, google. However, it was too often that I found the answer lying somewhere else than Adobe&#8217;s own material, even for simple stuff like the sound attaching.</p>
<p>The asdoc-ish format is great. My personal frustration is with how much the content lacks from a &#8216;migrator&#8217; point of view, not with the form it has.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eduardo Omine</title>
		<link>http://zehfernando.com/2007/finally/comment-page-1/#comment-438</link>
		<dc:creator>Eduardo Omine</dc:creator>
		<pubDate>Tue, 07 Aug 2007 02:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://labs.zeh.com.br/blog/?p=116#comment-438</guid>
		<description>I&#039;m curious, what&#039;s problematic about the current AS3 docs?

I&#039;m looking forward to use AS3 in my upcoming projects. Many essential things have changed from AS2, but at least now they seem to work more naturally, without workarounds like Delegate, etc.

About OOP, I hope AS3 will debunk the myth that OOP is appropriate for RIAs, but not practical for design or advertisement websites.</description>
		<content:encoded><![CDATA[<p>I&#8217;m curious, what&#8217;s problematic about the current AS3 docs?</p>
<p>I&#8217;m looking forward to use AS3 in my upcoming projects. Many essential things have changed from AS2, but at least now they seem to work more naturally, without workarounds like Delegate, etc.</p>
<p>About OOP, I hope AS3 will debunk the myth that OOP is appropriate for RIAs, but not practical for design or advertisement websites.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://zehfernando.com/2007/finally/comment-page-1/#comment-437</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Mon, 06 Aug 2007 23:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://labs.zeh.com.br/blog/?p=116#comment-437</guid>
		<description>Interesting that you and the other commenter feel that the documentation for AS3 is inadequate. Personally, I started using AS3 right when Flex 2 came out. To me, the documentation is lightyears beyond anything Macromedia every released for AS2, and that high quality is part of the reason I was able to pick up the language so quickly. The new class reference format (asdoc) is especially top notch!</description>
		<content:encoded><![CDATA[<p>Interesting that you and the other commenter feel that the documentation for AS3 is inadequate. Personally, I started using AS3 right when Flex 2 came out. To me, the documentation is lightyears beyond anything Macromedia every released for AS2, and that high quality is part of the reason I was able to pick up the language so quickly. The new class reference format (asdoc) is especially top notch!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit</title>
		<link>http://zehfernando.com/2007/finally/comment-page-1/#comment-436</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Mon, 06 Aug 2007 22:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://labs.zeh.com.br/blog/?p=116#comment-436</guid>
		<description>Hi,
I&#039;m still struggling with my AS2 projects.. and that lack of documentation (just like you said) is quite a problem, would you be kind enough to share a base structure for an AS3 project I just don&#039;t know where to start from, in AS2 I had that small swf that loads the main bigger one but i get tangled with all those document classes..
Thanks!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m still struggling with my AS2 projects.. and that lack of documentation (just like you said) is quite a problem, would you be kind enough to share a base structure for an AS3 project I just don&#8217;t know where to start from, in AS2 I had that small swf that loads the main bigger one but i get tangled with all those document classes..<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

