<?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: Differences between IVisualElement.parent and IVisualElement.owner</title>
	<atom:link href="http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/</link>
	<description>Programming under the influence of Flex</description>
	<lastBuildDate>Sun, 22 Jan 2012 01:08:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Steven Shongrunden</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-3300</link>
		<dc:creator>Steven Shongrunden</dc:creator>
		<pubDate>Sun, 20 Feb 2011 19:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-3300</guid>
		<description>&lt;a href=&quot;#comment-3239&quot; rel=&quot;nofollow&quot;&gt;@Don Douthitt&lt;/a&gt; - Sorry this blog eats up code pretty badly.  I tried your example using ActionScript and I see the same results as MXML.  Are you sure you are using the owner property in both cases?  If you have a small sample application that demonstrates what you are seeing I can investigate further if you send me the source: steve at flexponential.</description>
		<content:encoded><![CDATA[<p><a href="#comment-3239" rel="nofollow">@Don Douthitt</a> &#8211; Sorry this blog eats up code pretty badly.  I tried your example using ActionScript and I see the same results as MXML.  Are you sure you are using the owner property in both cases?  If you have a small sample application that demonstrates what you are seeing I can investigate further if you send me the source: steve at flexponential.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don Douthitt</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-3239</link>
		<dc:creator>Don Douthitt</dc:creator>
		<pubDate>Thu, 17 Feb 2011 03:47:17 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-3239</guid>
		<description>Well, my mxml was eaten. It&#039;s a TextArea with an ID of &quot;mxml_ta&quot; inside a SkinnableContainer.</description>
		<content:encoded><![CDATA[<p>Well, my mxml was eaten. It&#8217;s a TextArea with an ID of &#8220;mxml_ta&#8221; inside a SkinnableContainer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don Douthitt</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-3238</link>
		<dc:creator>Don Douthitt</dc:creator>
		<pubDate>Thu, 17 Feb 2011 03:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-3238</guid>
		<description>My tests show the owner tree is different if components are added dynamically in actionscript instead of through mxml. For example, the following code...

private function onCreationComplete():void {
  var container:SkinnableContainer = new SkinnableContainer();
  var ta:TextArea = new TextArea();
  ta.text = &quot;Test Message.&quot;;
	
  container.addElement(ta);
  this.addElement(container);
}

... produced this &quot;owner&quot; tree:
++++: Test
+++: SkinnableContainer
++: SkinnableContainerSkin
+: contentGroup
: TextArea

This MXML code, however...


  


... produced a different &quot;owner&quot; tree:
++: Test
+: SkinnableContainer
: mxml_ta

Is this expected? 

Thanks.</description>
		<content:encoded><![CDATA[<p>My tests show the owner tree is different if components are added dynamically in actionscript instead of through mxml. For example, the following code&#8230;</p>
<p>private function onCreationComplete():void {<br />
  var container:SkinnableContainer = new SkinnableContainer();<br />
  var ta:TextArea = new TextArea();<br />
  ta.text = &#8220;Test Message.&#8221;;</p>
<p>  container.addElement(ta);<br />
  this.addElement(container);<br />
}</p>
<p>&#8230; produced this &#8220;owner&#8221; tree:<br />
++++: Test<br />
+++: SkinnableContainer<br />
++: SkinnableContainerSkin<br />
+: contentGroup<br />
: TextArea</p>
<p>This MXML code, however&#8230;</p>
<p>&#8230; produced a different &#8220;owner&#8221; tree:<br />
++: Test<br />
+: SkinnableContainer<br />
: mxml_ta</p>
<p>Is this expected? </p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Core Flex 4 &#8211; Elements vs Children : Flashflex.com</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-1379</link>
		<dc:creator>Core Flex 4 &#8211; Elements vs Children : Flashflex.com</dc:creator>
		<pubDate>Tue, 27 Jul 2010 06:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-1379</guid>
		<description>[...] Nice example on the the difference between the owner and parent of a component. Very nice. [...]</description>
		<content:encoded><![CDATA[<p>[...] Nice example on the the difference between the owner and parent of a component. Very nice. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keyston</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-1216</link>
		<dc:creator>Keyston</dc:creator>
		<pubDate>Thu, 03 Jun 2010 23:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-1216</guid>
		<description>Great writeup, just apply this to an app i&#039;m working on.</description>
		<content:encoded><![CDATA[<p>Great writeup, just apply this to an app i&#8217;m working on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex 4 &#8211; (3) Différence entre éléments graphiques et éléments visuels (IVisualElement et DisplayObject) - Adobe Flex Tutorial - Tutoriaux Flex Builder, MXML, ActionScript, AS3</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-1183</link>
		<dc:creator>Flex 4 &#8211; (3) Différence entre éléments graphiques et éléments visuels (IVisualElement et DisplayObject) - Adobe Flex Tutorial - Tutoriaux Flex Builder, MXML, ActionScript, AS3</dc:creator>
		<pubDate>Sun, 30 May 2010 18:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-1183</guid>
		<description>[...] Differences between IVisualElement.parent and IVisualElement.owner [...]</description>
		<content:encoded><![CDATA[<p>[...] Differences between IVisualElement.parent and IVisualElement.owner [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill White&#8217;s Blog &#187; Core Flex 4 &#8211; Elements vs Children</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-840</link>
		<dc:creator>Bill White&#8217;s Blog &#187; Core Flex 4 &#8211; Elements vs Children</dc:creator>
		<pubDate>Fri, 09 Apr 2010 22:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-840</guid>
		<description>[...] Nice example on the the difference between the owner and parent of a component. Very nice.   Posted on April 8, 2010 at 1:15 pm by Bill · Permalink  In:&#160;Adobe Flex [...]</description>
		<content:encoded><![CDATA[<p>[...] Nice example on the the difference between the owner and parent of a component. Very nice.   Posted on April 8, 2010 at 1:15 pm by Bill · Permalink  In:&nbsp;Adobe Flex [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-836</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Fri, 09 Apr 2010 11:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-836</guid>
		<description>This is very helpful!  I did not realize the difference between owner and parent but this example really helps out.</description>
		<content:encoded><![CDATA[<p>This is very helpful!  I did not realize the difference between owner and parent but this example really helps out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TK</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-240</link>
		<dc:creator>TK</dc:creator>
		<pubDate>Wed, 09 Dec 2009 17:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-240</guid>
		<description>Interesting! Thanks for the post. I think I&#039;ll be using the &#039;owner&#039; property to climb the DisplayList from now on, since it seems it filters out a lot of unnecessary things such as skins etc.</description>
		<content:encoded><![CDATA[<p>Interesting! Thanks for the post. I think I&#8217;ll be using the &#8216;owner&#8217; property to climb the DisplayList from now on, since it seems it filters out a lot of unnecessary things such as skins etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flexponential &#187; Spark equivalent of DisplayObjectContainer.contains()</title>
		<link>http://flexponential.com/2009/12/08/differences-between-ivisualelement-parent-and-ivisualelement-owner/comment-page-1/#comment-237</link>
		<dc:creator>Flexponential &#187; Spark equivalent of DisplayObjectContainer.contains()</dc:creator>
		<pubDate>Wed, 09 Dec 2009 06:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=292#comment-237</guid>
		<description>[...] out this blog post for more on the differences between parent and [...]</description>
		<content:encoded><![CDATA[<p>[...] out this blog post for more on the differences between parent and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

