<?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: Writing a preloader in ActionScript 3</title>
	<atom:link href="http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/</link>
	<description>A chronicle of the development of a video game</description>
	<lastBuildDate>Wed, 28 Jul 2010 13:26:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: William Chadwick</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-1776</link>
		<dc:creator>William Chadwick</dc:creator>
		<pubDate>Thu, 08 Jan 2009 18:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-1776</guid>
		<description>You wrote: &quot;Actually since Adobe has all these nebulous products floating around that all pretty much do the same thing (Flash, Flex, Air, who knows what else), it’s a little confusing what language you are using for your source files.&quot;

To clear up the confusion about the different products (Flex Builder, Flash IDE, AIR): the Flash IDE is for Designers and graphic artists; the Flex IDE is for programmers and developers; and AIR allows a person to run a Flash file on their desktop without all the onerous security restrictions that the Flash Player in the Browser has (Firefox, IE, etc).It makes perfect sense for all these to be separate products. Most programmers are familiar with frameworks like Flex, but designers and artists do not use frameworks like that. 

It is a shame that Adobe has not done more to help with the pre-loader issue, especially the bug that makes the preloader fail when using deep linking in Flex.</description>
		<content:encoded><![CDATA[<p>You wrote: &#8220;Actually since Adobe has all these nebulous products floating around that all pretty much do the same thing (Flash, Flex, Air, who knows what else), it’s a little confusing what language you are using for your source files.&#8221;</p>
<p>To clear up the confusion about the different products (Flex Builder, Flash IDE, AIR): the Flash IDE is for Designers and graphic artists; the Flex IDE is for programmers and developers; and AIR allows a person to run a Flash file on their desktop without all the onerous security restrictions that the Flash Player in the Browser has (Firefox, IE, etc).It makes perfect sense for all these to be separate products. Most programmers are familiar with frameworks like Flex, but designers and artists do not use frameworks like that. </p>
<p>It is a shame that Adobe has not done more to help with the pre-loader issue, especially the bug that makes the preloader fail when using deep linking in Flex.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-837</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Sun, 25 May 2008 13:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-837</guid>
		<description>Yeah it was nice when it worked, however nothing could make me miss ActionScript 2!</description>
		<content:encoded><![CDATA[<p>Yeah it was nice when it worked, however nothing could make me miss ActionScript 2!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Kloske</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-822</link>
		<dc:creator>Tim Kloske</dc:creator>
		<pubDate>Sat, 24 May 2008 05:36:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-822</guid>
		<description>I really miss ActionScript 2.0. I know it was horrible, but at least you could create a preloader without much hassle.
loaded=(_root.getBytesLoaded/_root.getBytesTotal)*100
that was the ActionScript 2.0 way to create a preloader. Alternatively, you could try create a separate container preloader .swf that uses ActionScript 2.0 to load the actual game (and then the game itself could run in ActionScript 3.0). I&#039;m not entirely sure if this will help you at all though. Good luck with your project!</description>
		<content:encoded><![CDATA[<p>I really miss ActionScript 2.0. I know it was horrible, but at least you could create a preloader without much hassle.<br />
loaded=(_root.getBytesLoaded/_root.getBytesTotal)*100<br />
that was the ActionScript 2.0 way to create a preloader. Alternatively, you could try create a separate container preloader .swf that uses ActionScript 2.0 to load the actual game (and then the game itself could run in ActionScript 3.0). I&#8217;m not entirely sure if this will help you at all though. Good luck with your project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-238</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 15 Apr 2008 18:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-238</guid>
		<description>ENTER_FRAME events actually fire repeatedly, at the frame rate set by the app.

It is accurate on a local test, but if you try loading your SWF remotely, or with a slow-connection-simulator, bytesLoaded actually only reflects the size of frame 1.  Yet another issue of clearly broken functionality by Adobe.. ;(</description>
		<content:encoded><![CDATA[<p>ENTER_FRAME events actually fire repeatedly, at the frame rate set by the app.</p>
<p>It is accurate on a local test, but if you try loading your SWF remotely, or with a slow-connection-simulator, bytesLoaded actually only reflects the size of frame 1.  Yet another issue of clearly broken functionality by Adobe.. ;(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-213</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 14 Apr 2008 04:25:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-213</guid>
		<description>I don&#039;t like the bit-101 solution since it&#039;s broken. Since his code only updates progress on Event.ENTER_FRAME, which is only called....you guessed, once when you first enter the frame, it&#039;ll only update once.

I&#039;m not sure what you mean when you say loaderInfo.bytesLoaded isn&#039;t the actual size. If I modify the bit-101 solution to update on progress events, and then write loaderInfo.bytesLoaded to Firebug, it shows a continually changing value.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t like the bit-101 solution since it&#8217;s broken. Since his code only updates progress on Event.ENTER_FRAME, which is only called&#8230;.you guessed, once when you first enter the frame, it&#8217;ll only update once.</p>
<p>I&#8217;m not sure what you mean when you say loaderInfo.bytesLoaded isn&#8217;t the actual size. If I modify the bit-101 solution to update on progress events, and then write loaderInfo.bytesLoaded to Firebug, it shows a continually changing value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zandor 12</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-152</link>
		<dc:creator>Zandor 12</dc:creator>
		<pubDate>Thu, 27 Mar 2008 04:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-152</guid>
		<description>&quot;Behold!  We have created a language so mysterious that even we do not know what it does!!&quot;</description>
		<content:encoded><![CDATA[<p>&#8220;Behold!  We have created a language so mysterious that even we do not know what it does!!&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/comment-page-1/#comment-151</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 27 Mar 2008 03:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.jetpackhq.com/blog/2008/03/25/writing-a-preloader-in-actionscript-3/#comment-151</guid>
		<description>im sort of into programming, but i don&#039;t like reading technical posts that are this long! ill read half...or try to.</description>
		<content:encoded><![CDATA[<p>im sort of into programming, but i don&#8217;t like reading technical posts that are this long! ill read half&#8230;or try to.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
