<?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: Creating a Splash Screen in AIR</title>
	<atom:link href="http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/feed/" rel="self" type="application/rss+xml" />
	<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/</link>
	<description>Joseph Labrecque: Senior Interactive Software Engineer - Artist - Author - Speaker - Adobe Education Leader - Adobe Community Professional</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:00:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: screenworker</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-4417</link>
		<dc:creator>screenworker</dc:creator>
		<pubDate>Sat, 13 Nov 2010 17:54:15 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-4417</guid>
		<description>Doesn&#039;t work with SDK 4.0.0 only with previous SDK!

&quot;splashWindow.stage.addChild(appSplash);&quot; throws the exception:

TypeError: Error #1009: Cannot access a property or method of a null object reference.
	at mx.controls::SWFLoader/addedToStageHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\controls\SWFLoader.as:2303]
	at flash.display::DisplayObjectContainer/addChild()
	at flash.display::Stage/addChild()</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work with SDK 4.0.0 only with previous SDK!</p>
<p>&#8220;splashWindow.stage.addChild(appSplash);&#8221; throws the exception:</p>
<p>TypeError: Error #1009: Cannot access a property or method of a null object reference.<br />
	at mx.controls::SWFLoader/addedToStageHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\controls\SWFLoader.as:2303]<br />
	at flash.display::DisplayObjectContainer/addChild()<br />
	at flash.display::Stage/addChild()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Labrecque</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-3652</link>
		<dc:creator>Joseph Labrecque</dc:creator>
		<pubDate>Thu, 26 Nov 2009 15:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-3652</guid>
		<description>Ah, mysteries.  I can&#039;t remember :)  Has something to do with making it available to the framework for use in ActionScript later on.</description>
		<content:encoded><![CDATA[<p>Ah, mysteries.  I can&#8217;t remember :)  Has something to do with making it available to the framework for use in ActionScript later on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nick</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-3651</link>
		<dc:creator>nick</dc:creator>
		<pubDate>Thu, 26 Nov 2009 07:05:23 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-3651</guid>
		<description>what&#039;s up with:
hiddenCanvas.addChild(appSplash);
hiddenCanvas.removeChild(appSplash);
i know it doesn&#039;t work without these lines, but why?</description>
		<content:encoded><![CDATA[<p>what&#8217;s up with:<br />
hiddenCanvas.addChild(appSplash);<br />
hiddenCanvas.removeChild(appSplash);<br />
i know it doesn&#8217;t work without these lines, but why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victor azuara</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-3600</link>
		<dc:creator>victor azuara</dc:creator>
		<pubDate>Wed, 03 Jun 2009 22:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-3600</guid>
		<description>i tested this example in osx and when show the screen splash, show a little left bar, can you help me to fix it?</description>
		<content:encoded><![CDATA[<p>i tested this example in osx and when show the screen splash, show a little left bar, can you help me to fix it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Labrecque</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-3591</link>
		<dc:creator>Joseph Labrecque</dc:creator>
		<pubDate>Wed, 29 Apr 2009 13:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-3591</guid>
		<description>@fexnok 
Probably the simplest way to go about it would be to have the timer run infinitely, start the timer and invoke the function to perform your processes.  Have the timer keep checking if some Boolean variable (&quot;isProcessed&quot;, perhaps?) is true or fale.  

At the end of your processes, just flip the flag to true and have the timer just keep checking that variable, once it&#039;s been set to true, kill the timer, hide the splash, and reveal your UI.</description>
		<content:encoded><![CDATA[<p>@fexnok<br />
Probably the simplest way to go about it would be to have the timer run infinitely, start the timer and invoke the function to perform your processes.  Have the timer keep checking if some Boolean variable (&#8220;isProcessed&#8221;, perhaps?) is true or fale.  </p>
<p>At the end of your processes, just flip the flag to true and have the timer just keep checking that variable, once it&#8217;s been set to true, kill the timer, hide the splash, and reveal your UI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fexnok</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-3590</link>
		<dc:creator>fexnok</dc:creator>
		<pubDate>Wed, 29 Apr 2009 10:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-3590</guid>
		<description>That&#039;s an excellent example, how can I replace the timer function for a callback from a function? for example a function which loads everything in background while the splash is displayed and when the process finishes remove the splash?

Thanks</description>
		<content:encoded><![CDATA[<p>That&#8217;s an excellent example, how can I replace the timer function for a callback from a function? for example a function which loads everything in background while the splash is displayed and when the process finishes remove the splash?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: newton</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-3384</link>
		<dc:creator>newton</dc:creator>
		<pubDate>Wed, 04 Mar 2009 06:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-3384</guid>
		<description>Thanks for the way you have shown. Yet, I would look for any other way possible. Please let me know if you get some other way(better logical possibility).</description>
		<content:encoded><![CDATA[<p>Thanks for the way you have shown. Yet, I would look for any other way possible. Please let me know if you get some other way(better logical possibility).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-2050</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 30 Jan 2009 22:32:01 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-2050</guid>
		<description>Great article, very useful.  I am having an issue though -- binding doesn&#039;t seem to work.  For example, if I do something a bit more complex (e.g. add a Text element to the splash), pushing a value into it via binding does not seem to work.  Any thoughts?</description>
		<content:encoded><![CDATA[<p>Great article, very useful.  I am having an issue though &#8212; binding doesn&#8217;t seem to work.  For example, if I do something a bit more complex (e.g. add a Text element to the splash), pushing a value into it via binding does not seem to work.  Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: In Flagrante Delicto! &#187; Blog Archive &#187; DU Visual Media Center Weblog</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-370</link>
		<dc:creator>In Flagrante Delicto! &#187; Blog Archive &#187; DU Visual Media Center Weblog</dc:creator>
		<pubDate>Sat, 27 Sep 2008 05:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-370</guid>
		<description>[...] Creating a Splash Screen in AIR Who Wants a DropBox Invite? [...]</description>
		<content:encoded><![CDATA[<p>[...] Creating a Splash Screen in AIR Who Wants a DropBox Invite? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Labrecque</title>
		<link>http://inflagrantedelicto.memoryspiral.com/2008/07/creating-a-splash-screen-in-air/comment-page-1/#comment-368</link>
		<dc:creator>Joseph Labrecque</dc:creator>
		<pubDate>Fri, 05 Sep 2008 20:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://josephlabrecque.com/?p=167#comment-368</guid>
		<description>@Adrian: Glad you found it useful!</description>
		<content:encoded><![CDATA[<p>@Adrian: Glad you found it useful!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

