<?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: Tutorial: Understanding Classes in AS3 Part 2</title>
	<atom:link href="http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/</link>
	<description>We Make Flash Games</description>
	<lastBuildDate>Fri, 12 Mar 2010 17:17:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: BJPcommunication.com&#187; Archives &#187; Tutorial sur les classes AS3 et la POO</title>
		<link>http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/comment-page-1/#comment-4967</link>
		<dc:creator>BJPcommunication.com&#187; Archives &#187; Tutorial sur les classes AS3 et la POO</dc:creator>
		<pubDate>Mon, 18 Jan 2010 17:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.untoldentertainment.com/blog/?p=1661#comment-4967</guid>
		<description>[...] untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/ [...]</description>
		<content:encoded><![CDATA[<p>[...] untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sbliss</title>
		<link>http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/comment-page-1/#comment-4875</link>
		<dc:creator>Sbliss</dc:creator>
		<pubDate>Wed, 30 Dec 2009 22:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.untoldentertainment.com/blog/?p=1661#comment-4875</guid>
		<description>Ryan

The code is an example in Colin Moock&#039;s &quot;Essential ActionScript 3.0&quot; that i am using to learn AS3. The instruction says it should run. Because I am new to AS3, I don&#039;t what and how to define to get the code run.</description>
		<content:encoded><![CDATA[<p>Ryan</p>
<p>The code is an example in Colin Moock&#8217;s &#8220;Essential ActionScript 3.0&#8243; that i am using to learn AS3. The instruction says it should run. Because I am new to AS3, I don&#8217;t what and how to define to get the code run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/comment-page-1/#comment-4874</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.untoldentertainment.com/blog/?p=1661#comment-4874</guid>
		<description>Sblis  - i can&#039;t help with your problem by looking at the code out of context like this.  Do you just have this code copy/pasted to frame 1?  If so, the error is valid.  Flash has no idea what &quot;someMainApp&quot; is, and neither do i.  It&#039;s never mentioned in your code until that very last line.

If you&#039;ve got the code on frame 1 of the timeline, change the last line to:

addChild(group);</description>
		<content:encoded><![CDATA[<p>Sblis  &#8211; i can&#8217;t help with your problem by looking at the code out of context like this.  Do you just have this code copy/pasted to frame 1?  If so, the error is valid.  Flash has no idea what &#8220;someMainApp&#8221; is, and neither do i.  It&#8217;s never mentioned in your code until that very last line.</p>
<p>If you&#8217;ve got the code on frame 1 of the timeline, change the last line to:</p>
<p>addChild(group);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sbliss</title>
		<link>http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/comment-page-1/#comment-4872</link>
		<dc:creator>Sbliss</dc:creator>
		<pubDate>Wed, 30 Dec 2009 16:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.untoldentertainment.com/blog/?p=1661#comment-4872</guid>
		<description>Ryan
Please help me resolve the Error 1120: &quot;Access of undefined property someMainApp.addChild(group)&quot; message I am getting for the below code. it supposed to create 2 rectangular shapes on Sprite (as the DisplayObjectContainer).

var rect1:Shape = new Shape();
	rect1.graphics.lineStyle(1);
	rect1.graphics.beginFill(0x0000ff, 1);
	rect1.graphics.drawRect(0, 0, 75, 50);

var rect2:Shape = new Shape();
	rect2.graphics.lineStyle(1);
	rect2.graphics.beginFill(0x0000ff, 1);
	rect2.graphics.drawRect(0, 0, 75, 50);
	
	rect2.x = 50;
	rect2.y = 75;
	
var group:Sprite = new Sprite();
	group.addChild(rect1);
	group.addChild(rect2);
	
	someMainApp.addChild(group);


Thanx in advance for your assistance.

sbliss</description>
		<content:encoded><![CDATA[<p>Ryan<br />
Please help me resolve the Error 1120: &#8220;Access of undefined property someMainApp.addChild(group)&#8221; message I am getting for the below code. it supposed to create 2 rectangular shapes on Sprite (as the DisplayObjectContainer).</p>
<p>var rect1:Shape = new Shape();<br />
	rect1.graphics.lineStyle(1);<br />
	rect1.graphics.beginFill(0&#215;0000ff, 1);<br />
	rect1.graphics.drawRect(0, 0, 75, 50);</p>
<p>var rect2:Shape = new Shape();<br />
	rect2.graphics.lineStyle(1);<br />
	rect2.graphics.beginFill(0&#215;0000ff, 1);<br />
	rect2.graphics.drawRect(0, 0, 75, 50);</p>
<p>	rect2.x = 50;<br />
	rect2.y = 75;</p>
<p>var group:Sprite = new Sprite();<br />
	group.addChild(rect1);<br />
	group.addChild(rect2);</p>
<p>	someMainApp.addChild(group);</p>
<p>Thanx in advance for your assistance.</p>
<p>sbliss</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.untoldentertainment.com/blog/2009/09/09/tutorial-understanding-classes-in-as3-part-2/comment-page-1/#comment-4815</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 16 Dec 2009 13:02:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.untoldentertainment.com/blog/?p=1661#comment-4815</guid>
		<description>Thanks, Misa.  Sam was a real dog - a Chinese Crested who won the World&#039;s Ugliest Dog competition three years in a row.  Here&#039;s his Wikipedia entry:

http://en.wikipedia.org/wiki/Sam_(dog)</description>
		<content:encoded><![CDATA[<p>Thanks, Misa.  Sam was a real dog &#8211; a Chinese Crested who won the World&#8217;s Ugliest Dog competition three years in a row.  Here&#8217;s his Wikipedia entry:</p>
<p><a href="http://en.wikipedia.org/wiki/Sam_(dog)" rel="nofollow">http://en.wikipedia.org/wiki/Sam_(dog)</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
