<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: &#8220;Internal Build Error&#8221; or &#8220;Classes Must Not Be Nested&#8221; error</title>
	<atom:link href="http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/feed/" rel="self" type="application/rss+xml" />
	<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/</link>
	<description>a bad name for an awesome blog</description>
	<lastBuildDate>Thu, 05 Nov 2009 10:26:57 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mathias</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3656</link>
		<dc:creator>Mathias</dc:creator>
		<pubDate>Thu, 05 Nov 2009 10:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3656</guid>
		<description>Hi, 
this post is yet another great example why community works :)

I had the same issue, walking through the comments I found Brooks Hollar  comment and yes, when you concat a String and have linebreaks in your src, this compiler error occurs.
example:
SQLString += &quot;VALUES (&quot; + row.PersonId  + &quot;,&quot; 
	+ row.expenseAllowance + &quot;,&quot; 
	+ row.probableCustomer;
I&#039;m using Flex Builder 3.0.2.214194 and Flex SDK 3.4.0.9271

on my way to Jira ;-)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
this post is yet another great example why community works <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I had the same issue, walking through the comments I found Brooks Hollar  comment and yes, when you concat a String and have linebreaks in your src, this compiler error occurs.<br />
example:<br />
SQLString += &#8220;VALUES (&#8221; + row.PersonId  + &#8220;,&#8221;<br />
	+ row.expenseAllowance + &#8220;,&#8221;<br />
	+ row.probableCustomer;<br />
I&#8217;m using Flex Builder 3.0.2.214194 and Flex SDK 3.4.0.9271</p>
<p>on my way to Jira <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Schafer</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3648</link>
		<dc:creator>Scott Schafer</dc:creator>
		<pubDate>Thu, 13 Aug 2009 19:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3648</guid>
		<description>Thanks for taking the time to document all this.

I just have to vent and say: what a pathetic excuse for a compiler!  So &quot;Internal build error&quot; could mean that somewhere, anywhere, lurks a missing semicolon or some such, and it&#039;s up to the poor human to search every line of the source code for the offending line?

I am seriously ready to give up on Adobe products and just do C# &amp; Silverlight. I don&#039;t care if Flex pays better, this kind of aggravation is just not worth it.

Adobe had better get this right with the next release, or I&#039;m out the door.</description>
		<content:encoded><![CDATA[<p>Thanks for taking the time to document all this.</p>
<p>I just have to vent and say: what a pathetic excuse for a compiler!  So &#8220;Internal build error&#8221; could mean that somewhere, anywhere, lurks a missing semicolon or some such, and it&#8217;s up to the poor human to search every line of the source code for the offending line?</p>
<p>I am seriously ready to give up on Adobe products and just do C# &amp; Silverlight. I don&#8217;t care if Flex pays better, this kind of aggravation is just not worth it.</p>
<p>Adobe had better get this right with the next release, or I&#8217;m out the door.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravish</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3647</link>
		<dc:creator>ravish</dc:creator>
		<pubDate>Tue, 04 Aug 2009 04:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3647</guid>
		<description>In my case a bindable variable created this problem.

[Bindable]
private var ddArrColl:ArrayCollection;

and used somewhere as a dataprovider for a list;

then i changed to 
 

[Bindable]
private var ddArrColl:ArrayCollection = new ArrayCollection();

Bingo..!!!</description>
		<content:encoded><![CDATA[<p>In my case a bindable variable created this problem.</p>
<p>[Bindable]<br />
private var ddArrColl:ArrayCollection;</p>
<p>and used somewhere as a dataprovider for a list;</p>
<p>then i changed to </p>
<p>[Bindable]<br />
private var ddArrColl:ArrayCollection = new ArrayCollection();</p>
<p>Bingo..!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3646</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Wed, 22 Jul 2009 14:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3646</guid>
		<description>I had the wrong path Embeding an image...

btw: using flexbuilder alpha 4 on Linux (could be just me)</description>
		<content:encoded><![CDATA[<p>I had the wrong path Embeding an image&#8230;</p>
<p>btw: using flexbuilder alpha 4 on Linux (could be just me)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ultraviolet Design Blog &#187; Flex Builder 3 - Internal Build Error bug</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3645</link>
		<dc:creator>Ultraviolet Design Blog &#187; Flex Builder 3 - Internal Build Error bug</dc:creator>
		<pubDate>Wed, 24 Jun 2009 11:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3645</guid>
		<description>[...] new bug by any account and from my research seemed to be particularly prominent in Flex Builder 2. This article which lists a few of the reasons which this may happen is very useful and I&#8217;ve just noticed [...]</description>
		<content:encoded><![CDATA[<p>[...] new bug by any account and from my research seemed to be particularly prominent in Flex Builder 2. This article which lists a few of the reasons which this may happen is very useful and I&#8217;ve just noticed [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3594</link>
		<dc:creator>Deepak</dc:creator>
		<pubDate>Sun, 10 May 2009 19:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3594</guid>
		<description>I had a free floating variable like this declared in an ActionScript file

public var xmlAttrList:XMLList = loadedXml.books.book.authors.author.(@first == &quot;Monica&quot;);

I was including this .as file in a .mxml file. The compiler didn&#039;t like the E4X filtering (although other more basic E4X features seemed to work)

The fix was to do such E4X operationswithin a function that is explicitly called as part of handling some event.. in this case I put it in an mx:Application initialize event handler function.

I just started learning Flex and am still trying to figure out scoping, the order of processing of declarations, compilation etc... Hopefully I&#039;ll understand this better in a few days/weeks.</description>
		<content:encoded><![CDATA[<p>I had a free floating variable like this declared in an ActionScript file</p>
<p>public var xmlAttrList:XMLList = loadedXml.books.book.authors.author.(@first == &#8220;Monica&#8221;);</p>
<p>I was including this .as file in a .mxml file. The compiler didn&#8217;t like the E4X filtering (although other more basic E4X features seemed to work)</p>
<p>The fix was to do such E4X operationswithin a function that is explicitly called as part of handling some event.. in this case I put it in an mx:Application initialize event handler function.</p>
<p>I just started learning Flex and am still trying to figure out scoping, the order of processing of declarations, compilation etc&#8230; Hopefully I&#8217;ll understand this better in a few days/weeks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3579</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 28 Apr 2009 03:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3579</guid>
		<description>We isolated the issue to be with shape tween in a swc.</description>
		<content:encoded><![CDATA[<p>We isolated the issue to be with shape tween in a swc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christina</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3570</link>
		<dc:creator>Christina</dc:creator>
		<pubDate>Wed, 22 Apr 2009 13:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3570</guid>
		<description>I had the same error too. In my case problem occurred while I was trying to define two methods with different namespaces in my class. After different manipulations to fix this I was tired and confused. Last thing I did was the cleaning project and error has gone :)  For now I don&#039;t know why this error occurred to me... Maybe, someone has the same situation?</description>
		<content:encoded><![CDATA[<p>I had the same error too. In my case problem occurred while I was trying to define two methods with different namespaces in my class. After different manipulations to fix this I was tired and confused. Last thing I did was the cleaning project and error has gone <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   For now I don&#8217;t know why this error occurred to me&#8230; Maybe, someone has the same situation?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DavidW</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3348</link>
		<dc:creator>DavidW</dc:creator>
		<pubDate>Thu, 29 Jan 2009 21:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3348</guid>
		<description>Spent a long time trying to track this down. For me it came down to: UPDATE THE COMPILER VERSION from within FlexBuilder. There was code that wasn&#039;t running properly in the older version.</description>
		<content:encoded><![CDATA[<p>Spent a long time trying to track this down. For me it came down to: UPDATE THE COMPILER VERSION from within FlexBuilder. There was code that wasn&#8217;t running properly in the older version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ZPiDER</title>
		<link>http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3315</link>
		<dc:creator>ZPiDER</dc:creator>
		<pubDate>Fri, 09 Jan 2009 14:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://rjowen.wordpress.com/2007/06/21/internal-build-error-or-classes-must-not-be-nested-error/#comment-3315</guid>
		<description>In my case (and from what i have read here this might be true for others) it was a COMBINATION of +2 problems:

1. i had errors in my code (i dont think it matters which errors, for what its worth, they were in a file of the same package as in 2.)
2. i had an .as file in my structure with a wrong package name

when i removed the file it showed me the other errors.
so for me it comes down to a copy-file-mishap..</description>
		<content:encoded><![CDATA[<p>In my case (and from what i have read here this might be true for others) it was a COMBINATION of +2 problems:</p>
<p>1. i had errors in my code (i dont think it matters which errors, for what its worth, they were in a file of the same package as in 2.)<br />
2. i had an .as file in my structure with a wrong package name</p>
<p>when i removed the file it showed me the other errors.<br />
so for me it comes down to a copy-file-mishap..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
