<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: Some notes on migrating applications from Flex 1.5 (AS2) to Flex 2 (AS3)</title>
	<atom:link href="http://aralbalkan.com/640/feed" rel="self" type="application/rss+xml" />
	<link>http://aralbalkan.com/640</link>
	<description>Passionate geekisms.</description>
	<lastBuildDate>Tue, 22 May 2012 18:33:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Alok B</title>
		<link>http://aralbalkan.com/640/comment-page-1#comment-257507</link>
		<dc:creator>Alok B</dc:creator>
		<pubDate>Thu, 27 Aug 2009 09:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/640#comment-257507</guid>
		<description>Hi Venkat/ Prashanth,

Even I am facing the same problem, any help on this will be good.</description>
		<content:encoded><![CDATA[<p>Hi Venkat/ Prashanth,</p>
<p>Even I am facing the same problem, any help on this will be good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prashant shelke</title>
		<link>http://aralbalkan.com/640/comment-page-1#comment-214181</link>
		<dc:creator>prashant shelke</dc:creator>
		<pubDate>Fri, 06 Feb 2009 12:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/640#comment-214181</guid>
		<description>Hi Venkat i m also facing same issue, i went to link below but its not useful in my case:

http://www.flashdevelop.org/community/viewtopic.php?p=10526</description>
		<content:encoded><![CDATA[<p>Hi Venkat i m also facing same issue, i went to link below but its not useful in my case:</p>
<p><a href="http://www.flashdevelop.org/community/viewtopic.php?p=10526" rel="nofollow">http://www.flashdevelop.org/community/viewtopic.php?p=10526</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://aralbalkan.com/640/comment-page-1#comment-212652</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Tue, 03 Feb 2009 16:18:26 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/640#comment-212652</guid>
		<description>I get an error like this.
&quot;Unable to locate specified base class &#039;mx.core.Application&#039; for component class &#039;aRunnableApp&#039;

What can this be? 

Thanks!</description>
		<content:encoded><![CDATA[<p>I get an error like this.<br />
&#8220;Unable to locate specified base class &#8216;mx.core.Application&#8217; for component class &#8216;aRunnableApp&#8217;</p>
<p>What can this be? </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Exey</title>
		<link>http://aralbalkan.com/640/comment-page-1#comment-1580</link>
		<dc:creator>Exey</dc:creator>
		<pubDate>Thu, 03 Aug 2006 12:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/640#comment-1580</guid>
		<description>I have try ported HAccordion(http://www.mossyblog.com/archives/485.cfm)  to flex 2
I have copied folder into project \mx from Flex 2 SDK, and have some problems with mx components:


---------------------------------

1020: Method marked override must override another method.	Application.as	HAccordion/mx/core

//before my correcting
/* line 540 */ override public function set label(value:String):void

//after my correcting
/* line 540 */ public function set label(value:String):void

---------------------------------

1084: Syntax error: expecting leftbrace before colon.	VBox.as	HAccordion/mx/containers	line 52	

//before my correcting

/* line 52 */ public class mx:Canvas extends Box

//after my correcting

/* line 52 */ public class VBox extends Box

---------------------------------

The Project has compiled, but stopped at loading with Alert:

---------------------------------
Error: Multiple sets of visual children have been specified for this component (component definition and component instance).
	at mx.core::Container/initialize()
	at mx.core::Application/initialize()
	at HAccordion/initialize()
	at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
	at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()
	at mx.core::Container/addChildAt()
	at mx.core::Container/addChild()
	at mx.core::Container/createComponentFromDescriptor()
	at mx.core::Container/createComponentsFromDescriptors()
	at mx.core::Container/mx.core:Container::createChildren()
	at mx.core::UIComponent/initialize()
	at mx.core::Container/initialize()
	at mx.core::Application/initialize()
	at HAccordion/initialize()
	at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::childAdded()
	at mx.managers::SystemManager/::initializeTopLevelWindow()
	at mx.managers::SystemManager/::frameEndHandler()
---------------------------------</description>
		<content:encoded><![CDATA[<p>I have try ported HAccordion(http://www.mossyblog.com/archives/485.cfm)  to flex 2<br />
I have copied folder into project \mx from Flex 2 SDK, and have some problems with mx components:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>1020: Method marked override must override another method.	Application.as	HAccordion/mx/core</p>
<p>//before my correcting<br />
/* line 540 */ override public function set label(value:String):void</p>
<p>//after my correcting<br />
/* line 540 */ public function set label(value:String):void</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>1084: Syntax error: expecting leftbrace before colon.	VBox.as	HAccordion/mx/containers	line 52	</p>
<p>//before my correcting</p>
<p>/* line 52 */ public class mx:Canvas extends Box</p>
<p>//after my correcting</p>
<p>/* line 52 */ public class VBox extends Box</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>The Project has compiled, but stopped at loading with Alert:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Error: Multiple sets of visual children have been specified for this component (component definition and component instance).<br />
	at mx.core::Container/initialize()<br />
	at mx.core::Application/initialize()<br />
	at HAccordion/initialize()<br />
	at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()<br />
	at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()<br />
	at mx.core::Container/addChildAt()<br />
	at mx.core::Container/addChild()<br />
	at mx.core::Container/createComponentFromDescriptor()<br />
	at mx.core::Container/createComponentsFromDescriptors()<br />
	at mx.core::Container/mx.core:Container::createChildren()<br />
	at mx.core::UIComponent/initialize()<br />
	at mx.core::Container/initialize()<br />
	at mx.core::Application/initialize()<br />
	at HAccordion/initialize()<br />
	at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::childAdded()<br />
	at mx.managers::SystemManager/::initializeTopLevelWindow()<br />
	at mx.managers::SystemManager/::frameEndHandler()<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gayathri</title>
		<link>http://aralbalkan.com/640/comment-page-1#comment-1362</link>
		<dc:creator>gayathri</dc:creator>
		<pubDate>Thu, 27 Jul 2006 15:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/640#comment-1362</guid>
		<description>Thanks.I found the following error:
A file found in a source-path must have an externally visible definition. If a definition in the file is meant to be externally visible, please put the definition in a package. 
I could resolve it from the solution given here.</description>
		<content:encoded><![CDATA[<p>Thanks.I found the following error:<br />
A file found in a source-path must have an externally visible definition. If a definition in the file is meant to be externally visible, please put the definition in a package.<br />
I could resolve it from the solution given here.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

