<?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: Problem solved transferring typed objects to Flex</title>
	<atom:link href="http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/</link>
	<description>Flex, AIR, ColdFusion, and everything in between</description>
	<lastBuildDate>Mon, 26 Jul 2010 19:48:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Gareth</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-781</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Wed, 11 Nov 2009 21:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-781</guid>
		<description>Glad to help.  This one has been a frustration for me on a couple of occasions (after I forget that I really *do* know what the issue is :) )</description>
		<content:encoded><![CDATA[<p>Glad to help.  This one has been a frustration for me on a couple of occasions (after I forget that I really *do* know what the issue is <img src='http://flexoop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yannis Develekos</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-780</link>
		<dc:creator>Yannis Develekos</dc:creator>
		<pubDate>Wed, 11 Nov 2009 20:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-780</guid>
		<description>OK. That saved the day for me! Thank you very much.</description>
		<content:encoded><![CDATA[<p>OK. That saved the day for me! Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Levesque</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-250</link>
		<dc:creator>Nathan Levesque</dc:creator>
		<pubDate>Thu, 15 Jan 2009 02:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-250</guid>
		<description>One last note, the above code I gave does the same as specifying the &#039;includes&#039; option to the compiler, but allows you to have it right in your code instead of in a build script somewhere.</description>
		<content:encoded><![CDATA[<p>One last note, the above code I gave does the same as specifying the &#8216;includes&#8217; option to the compiler, but allows you to have it right in your code instead of in a build script somewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Levesque</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-249</link>
		<dc:creator>Nathan Levesque</dc:creator>
		<pubDate>Thu, 15 Jan 2009 02:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-249</guid>
		<description>It&#039;s an undocumented tag. You should be able to define a  tag as a child of the  tag and drop all your Frame metadata tags in there.

See:
http://livedocs.adobe.com/flex/2/langref/mxml/metadata.html</description>
		<content:encoded><![CDATA[<p>It&#8217;s an undocumented tag. You should be able to define a  tag as a child of the  tag and drop all your Frame metadata tags in there.</p>
<p>See:<br />
<a href="http://livedocs.adobe.com/flex/2/langref/mxml/metadata.html" rel="nofollow">http://livedocs.adobe.com/flex/2/langref/mxml/metadata.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-241</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Wed, 14 Jan 2009 21:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-241</guid>
		<description>Looking at the documentation again, I&#039;m not sure where the Metadata stuff goes.  Is it in the class itself, and thus Flex &quot;knows&quot; to include that class in your build?  I just haven&#039;t been able to find anything specific about where to include the &quot;Frame&quot; information.</description>
		<content:encoded><![CDATA[<p>Looking at the documentation again, I&#8217;m not sure where the Metadata stuff goes.  Is it in the class itself, and thus Flex &#8220;knows&#8221; to include that class in your build?  I just haven&#8217;t been able to find anything specific about where to include the &#8220;Frame&#8221; information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-240</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Wed, 14 Jan 2009 20:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-240</guid>
		<description>Hmm...hadn&#039;t seen that one used before.  So (after poking around a bit), I guess you just drop all of the classes in your application mxml page?  Flex then knows to include those classes in the compiled code.  I guess a benefit is that you don&#039;t unnecessarily instantiate a class in your code.  Any other reason for doing it this way?</description>
		<content:encoded><![CDATA[<p>Hmm&#8230;hadn&#8217;t seen that one used before.  So (after poking around a bit), I guess you just drop all of the classes in your application mxml page?  Flex then knows to include those classes in the compiled code.  I guess a benefit is that you don&#8217;t unnecessarily instantiate a class in your code.  Any other reason for doing it this way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Levesque</title>
		<link>http://flexoop.com/2009/01/problem-solved-transferring-typed-objects-to-flex/comment-page-1/#comment-239</link>
		<dc:creator>Nathan Levesque</dc:creator>
		<pubDate>Wed, 14 Jan 2009 19:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=137#comment-239</guid>
		<description>You can also use the Frame metadata tag:

[Frame(extraClass=&quot;org.vega.FileInfo&quot;)]

just make sure you use the full package name in Flex</description>
		<content:encoded><![CDATA[<p>You can also use the Frame metadata tag:</p>
<p>[Frame(extraClass="org.vega.FileInfo")]</p>
<p>just make sure you use the full package name in Flex</p>
]]></content:encoded>
	</item>
</channel>
</rss>
