<?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 for AS3 Errors</title>
	<atom:link href="http://www.as3errors.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.as3errors.com</link>
	<description>The Definitive Resource for ActionScript Errors</description>
	<lastBuildDate>Wed, 08 Dec 2010 01:13:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
	<item>
		<title>Comment on 1023: Incompatible Override by myk</title>
		<link>http://www.as3errors.com/1023-incompatible-override/comment-page-1#comment-10</link>
		<dc:creator>myk</dc:creator>
		<pubDate>Wed, 08 Dec 2010 01:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=106#comment-10</guid>
		<description>Glad it helped! Something that helps to avoid these kinds of problems is using an IDE that does autocomplete for overrides. Using Flash Builder 4, I can type something like &quot;override protected function myFun...&quot; and it&#039;ll automatically complete the code, including all inputs and return type. Very useful!</description>
		<content:encoded><![CDATA[<p>Glad it helped! Something that helps to avoid these kinds of problems is using an IDE that does autocomplete for overrides. Using Flash Builder 4, I can type something like &#8220;override protected function myFun&#8230;&#8221; and it&#8217;ll automatically complete the code, including all inputs and return type. Very useful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1023: Incompatible Override by goJohnnyGo</title>
		<link>http://www.as3errors.com/1023-incompatible-override/comment-page-1#comment-9</link>
		<dc:creator>goJohnnyGo</dc:creator>
		<pubDate>Wed, 08 Dec 2010 01:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=106#comment-9</guid>
		<description>Omg, went over my code a zillion times can couldn&#039;t figure out why I was getting this error.  I read your description and realized I didn&#039;t specify &quot;void&quot; as my return type.  D&#039;oh!</description>
		<content:encoded><![CDATA[<p>Omg, went over my code a zillion times can couldn&#8217;t figure out why I was getting this error.  I read your description and realized I didn&#8217;t specify &#8220;void&#8221; as my return type.  D&#8217;oh!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1120: Access of undefined property… by stalkio</title>
		<link>http://www.as3errors.com/1120-access-of-undefined-property/comment-page-1#comment-8</link>
		<dc:creator>stalkio</dc:creator>
		<pubDate>Mon, 05 Jul 2010 00:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=21#comment-8</guid>
		<description>Just wanted to say thank you!! I have been looking for this for a while now

Cheers</description>
		<content:encoded><![CDATA[<p>Just wanted to say thank you!! I have been looking for this for a while now</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1020: Method marked override must override another method by 1023: Incompatible Override &#171; AS3 Errors</title>
		<link>http://www.as3errors.com/1020-method-marked-override-must-override-another-method/comment-page-1#comment-6</link>
		<dc:creator>1023: Incompatible Override &#171; AS3 Errors</dc:creator>
		<pubDate>Thu, 17 Sep 2009 18:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=108#comment-6</guid>
		<description>[...]        &#171; 1010: The override attribute may be used only on class property definitions 1020: Method marked override must override another method [...]</description>
		<content:encoded><![CDATA[<p>[...]        &laquo; 1010: The override attribute may be used only on class property definitions 1020: Method marked override must override another method [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1020: Method marked override must override another method by 1010: The override attribute may be used only on class property definitions &#171; AS3 Errors</title>
		<link>http://www.as3errors.com/1020-method-marked-override-must-override-another-method/comment-page-1#comment-5</link>
		<dc:creator>1010: The override attribute may be used only on class property definitions &#171; AS3 Errors</dc:creator>
		<pubDate>Thu, 17 Sep 2009 18:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=108#comment-5</guid>
		<description>[...] 2) The method you&#8217;re attempting to override must exist within the parent class. If you extend MovieClip and attempt to create a method called test() and mark it override, you will generate error 1020: Method marked override must override another method. [...]</description>
		<content:encoded><![CDATA[<p>[...] 2) The method you&#8217;re attempting to override must exist within the parent class. If you extend MovieClip and attempt to create a method called test() and mark it override, you will generate error 1020: Method marked override must override another method. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1010: The override attribute may be used only on class property definitions by 1025: Cannot redefine a final method. &#171; AS3 Errors</title>
		<link>http://www.as3errors.com/1010-the-override-attribute-may-be-used-only-on-class-property-definitions/comment-page-1#comment-4</link>
		<dc:creator>1025: Cannot redefine a final method. &#171; AS3 Errors</dc:creator>
		<pubDate>Thu, 17 Sep 2009 18:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=103#comment-4</guid>
		<description>[...] 1) You have to be overriding at the class level. You cannot override a function block that&#8217;s nested within a class method, nor can you override a function block of timeline code. Otherwise, you generate error 1010: The override attribute may only be used on class property definitions. [...]</description>
		<content:encoded><![CDATA[<p>[...] 1) You have to be overriding at the class level. You cannot override a function block that&#8217;s nested within a class method, nor can you override a function block of timeline code. Otherwise, you generate error 1010: The override attribute may only be used on class property definitions. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1010: The override attribute may be used only on class property definitions by 1020: Method marked override must override another method &#171; AS3 Errors</title>
		<link>http://www.as3errors.com/1010-the-override-attribute-may-be-used-only-on-class-property-definitions/comment-page-1#comment-3</link>
		<dc:creator>1020: Method marked override must override another method &#171; AS3 Errors</dc:creator>
		<pubDate>Thu, 17 Sep 2009 18:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=103#comment-3</guid>
		<description>[...] 1) You have to be overriding at the class level. You cannot override a function block that&#8217;s nested within a class method, nor can you override a function block of timeline code. Otherwise, you generate error 1010: The override attribute may only be used on class property definitions. [...]</description>
		<content:encoded><![CDATA[<p>[...] 1) You have to be overriding at the class level. You cannot override a function block that&#8217;s nested within a class method, nor can you override a function block of timeline code. Otherwise, you generate error 1010: The override attribute may only be used on class property definitions. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 1010: The override attribute may be used only on class property definitions by 1023: Incompatible Override &#171; AS3 Errors</title>
		<link>http://www.as3errors.com/1010-the-override-attribute-may-be-used-only-on-class-property-definitions/comment-page-1#comment-2</link>
		<dc:creator>1023: Incompatible Override &#171; AS3 Errors</dc:creator>
		<pubDate>Thu, 17 Sep 2009 18:16:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.as3errors.com/?p=103#comment-2</guid>
		<description>[...] Request        &#171; 1010: The override attribute may be used only on class property definitions [...]</description>
		<content:encoded><![CDATA[<p>[...] Request        &laquo; 1010: The override attribute may be used only on class property definitions [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

