<?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: Error: Error #2037: Functions called in incorrect sequence, or earlier call was unsuccessful</title>
	<atom:link href="http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/</link>
	<description>code = joy</description>
	<lastBuildDate>Fri, 02 Dec 2011 01:36:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Rodislav Moldovan</title>
		<link>http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/comment-page-1/#comment-26217</link>
		<dc:creator>Rodislav Moldovan</dc:creator>
		<pubDate>Wed, 23 Feb 2011 13:57:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikechambers.com/blog/?p=1671#comment-26217</guid>
		<description>My 2 cents

In case someone encounter this problem with Sound class, don`t forget - each time you load some file, you need new instance of Sound class. If you`l call sound.load(..) 2 times, event with sound.close() between calls, you`l get discussed error .</description>
		<content:encoded><![CDATA[<p>My 2 cents</p>
<p>In case someone encounter this problem with Sound class, don`t forget &#8211; each time you load some file, you need new instance of Sound class. If you`l call sound.load(..) 2 times, event with sound.close() between calls, you`l get discussed error .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luca mezzalira</title>
		<link>http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/comment-page-1/#comment-24248</link>
		<dc:creator>luca mezzalira</dc:creator>
		<pubDate>Mon, 20 Sep 2010 19:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikechambers.com/blog/?p=1671#comment-24248</guid>
		<description>Hi All,
it&#039;s an old post but I add my contribute.
If you want add a particular file path you can solve this error with:

var f:File = new File();
f.nativePath = &quot;filepath&quot;

if you use resolvePath it gives you an error, setting nativepath everything works well</description>
		<content:encoded><![CDATA[<p>Hi All,<br />
it&#8217;s an old post but I add my contribute.<br />
If you want add a particular file path you can solve this error with:</p>
<p>var f:File = new File();<br />
f.nativePath = &#8220;filepath&#8221;</p>
<p>if you use resolvePath it gives you an error, setting nativepath everything works well</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The IT Kraut</title>
		<link>http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/comment-page-1/#comment-16879</link>
		<dc:creator>The IT Kraut</dc:creator>
		<pubDate>Thu, 01 Oct 2009 09:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikechambers.com/blog/?p=1671#comment-16879</guid>
		<description>&lt;strong&gt;AIR Error #2037: &quot;Functions called in incorrect sequence, or earlier&quot;...&lt;/strong&gt;

After a short quiet period I&#039;m back today to tell you something about the AIR file object. While deploying a new version of my application I ran into some problems on other systems. AIR threw the error #2037: &quot;Functions called in incorrect sequence, ...</description>
		<content:encoded><![CDATA[<p><strong>AIR Error #2037: &#8220;Functions called in incorrect sequence, or earlier&#8221;&#8230;</strong></p>
<p>After a short quiet period I&#8217;m back today to tell you something about the AIR file object. While deploying a new version of my application I ran into some problems on other systems. AIR threw the error #2037: &#8220;Functions called in incorrect sequence, &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikechambers</title>
		<link>http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/comment-page-1/#comment-15902</link>
		<dc:creator>mikechambers</dc:creator>
		<pubDate>Mon, 02 Mar 2009 07:49:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikechambers.com/blog/?p=1671#comment-15902</guid>
		<description>@Isaac

Good catch. That will teach me to copy and past without testing first.

I fixed the error.

mike</description>
		<content:encoded><![CDATA[<p>@Isaac</p>
<p>Good catch. That will teach me to copy and past without testing first.</p>
<p>I fixed the error.</p>
<p>mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Isaac Rivera</title>
		<link>http://www.mikechambers.com/blog/2009/02/28/error-error-2037-functions-called-in-incorrect-sequence-or-earlier-call-was-unsuccessful/comment-page-1/#comment-15891</link>
		<dc:creator>Isaac Rivera</dc:creator>
		<pubDate>Sat, 28 Feb 2009 14:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikechambers.com/blog/?p=1671#comment-15891</guid>
		<description>That would be:

var f:File = File.desktopDirectory;
trace(f.exists());

File.desktopDirectory is not a constructor but a static reference.</description>
		<content:encoded><![CDATA[<p>That would be:</p>
<p>var f:File = File.desktopDirectory;<br />
trace(f.exists());</p>
<p>File.desktopDirectory is not a constructor but a static reference.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

