<?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: AS3 Preloading continued</title>
	<atom:link href="http://www.nulldesign.de/2007/11/30/as3-preloading-continued/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/</link>
	<description>A place to showcase my personal portfolio and flash related experiments</description>
	<lastBuildDate>Mon, 06 Sep 2010 16:01:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ponce</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-4497</link>
		<dc:creator>Ponce</dc:creator>
		<pubDate>Sun, 13 Jul 2008 00:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-4497</guid>
		<description>Very Nice !</description>
		<content:encoded><![CDATA[<p>Very Nice !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TheActionscriptMan</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-2003</link>
		<dc:creator>TheActionscriptMan</dc:creator>
		<pubDate>Fri, 04 Apr 2008 00:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-2003</guid>
		<description>I think your right that the -frame compiler option is a simple way of doing things. I&#039;ve written a preloader using this method that combines this with MochiAds, MochiBot, Glossy Progress Bar and Simple domain locking - and i&#039;ve put the source code up on my blog http://www.adventuresinactionscript.com/ if anyone wants it and i&#039;ve linked you as the source where i found the info - so cheers for finding and the explanation!</description>
		<content:encoded><![CDATA[<p>I think your right that the -frame compiler option is a simple way of doing things. I&#8217;ve written a preloader using this method that combines this with MochiAds, MochiBot, Glossy Progress Bar and Simple domain locking &#8211; and i&#8217;ve put the source code up on my blog <a href="http://www.adventuresinactionscript.com/" rel="nofollow">http://www.adventuresinactionscript.com/</a> if anyone wants it and i&#8217;ve linked you as the source where i found the info &#8211; so cheers for finding and the explanation!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Writing a preloader in ActionScript 3 &#124; Jetpack Development</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-725</link>
		<dc:creator>Writing a preloader in ActionScript 3 &#124; Jetpack Development</dc:creator>
		<pubDate>Tue, 25 Mar 2008 14:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-725</guid>
		<description>[...] for discovering this (unfortunately the text is German, but the source code is readable). Also thanks to Lars Gerckens for his research, and BIT-101 for this alternate solution. And of course thanks to Adobe for [...]</description>
		<content:encoded><![CDATA[<p>[...] for discovering this (unfortunately the text is German, but the source code is readable). Also thanks to Lars Gerckens for his research, and BIT-101 for this alternate solution. And of course thanks to Adobe for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ragaskar</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-677</link>
		<dc:creator>ragaskar</dc:creator>
		<pubDate>Fri, 14 Mar 2008 17:00:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-677</guid>
		<description>Problem solved: Apache was gzipping my flash file, which (I&#039;m assuming) forced the browser to download the entire file before it was able to display it. 

Weirdly enough i was unable to find any gzip config beyond the simple loading of the delate module -- everything was gzipping regardless. Anyhow, was able to turn off deflate/gzip from htaccess using someone else&#039;s gzip config (be warned this probably also ADDS gzip on some items in addition to turning it off for swfs): 

SetOutputFilter         DEFLATE
# Netscape 4.x has some problems...
BrowserMatch            ^Mozilla/4 gzip-only-text/html
# Netscape              4.06-4.08 have some more problems
BrowserMatch            ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
BrowserMatch            \bMSIE !no-gzip !gzip-only-text/html
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won&#039;t work. You can use the following
# workaround to get the desired effect:
BrowserMatch            \bMSI[E] !no-gzip !gzip-only-text/html
# Don&#039;t compress images
SetEnvIfNoCase          Request_URI \.(?:gif&#124;jpe?g&#124;png)$ no-gzip dont-vary
SetEnvIfNoCase          Request_URI \/image\.php no-gzip dont-vary
# Also don&#039;t compress PDF and Flash-files 17-01-2004 MM
SetEnvIfNoCase          Request_URI \.pdf$ no-gzip dont-vary
SetEnvIfNoCase          Request_URI \.swf$ no-gzip dont-vary
# Make sure proxies don&#039;t deliver the wrong content
Header                  append Vary User-Agent env=!dont-vary</description>
		<content:encoded><![CDATA[<p>Problem solved: Apache was gzipping my flash file, which (I&#8217;m assuming) forced the browser to download the entire file before it was able to display it. </p>
<p>Weirdly enough i was unable to find any gzip config beyond the simple loading of the delate module &#8212; everything was gzipping regardless. Anyhow, was able to turn off deflate/gzip from htaccess using someone else&#8217;s gzip config (be warned this probably also ADDS gzip on some items in addition to turning it off for swfs): </p>
<p>SetOutputFilter         DEFLATE<br />
# Netscape 4.x has some problems&#8230;<br />
BrowserMatch            ^Mozilla/4 gzip-only-text/html<br />
# Netscape              4.06-4.08 have some more problems<br />
BrowserMatch            ^Mozilla/4\.0[678] no-gzip<br />
# MSIE masquerades as Netscape, but it is fine<br />
BrowserMatch            \bMSIE !no-gzip !gzip-only-text/html<br />
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48<br />
# the above regex won&#8217;t work. You can use the following<br />
# workaround to get the desired effect:<br />
BrowserMatch            \bMSI[E] !no-gzip !gzip-only-text/html<br />
# Don&#8217;t compress images<br />
SetEnvIfNoCase          Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary<br />
SetEnvIfNoCase          Request_URI \/image\.php no-gzip dont-vary<br />
# Also don&#8217;t compress PDF and Flash-files 17-01-2004 MM<br />
SetEnvIfNoCase          Request_URI \.pdf$ no-gzip dont-vary<br />
SetEnvIfNoCase          Request_URI \.swf$ no-gzip dont-vary<br />
# Make sure proxies don&#8217;t deliver the wrong content<br />
Header                  append Vary User-Agent env=!dont-vary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ragaskar</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-673</link>
		<dc:creator>ragaskar</dc:creator>
		<pubDate>Fri, 14 Mar 2008 02:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-673</guid>
		<description>holy smoly. I uploaded it to another server (which happened to be running lighttp/debian), and it worked great on both IE (which STILL isn&#039;t &#039;testing&#039; properly locally) and FF. 

so obviously there is something going on with my other server (Apache/CentOS). wonder if it&#039;s a mime type deal or because of APC or something. 

this is going to drive me nuts.

although hey, I guess I didn&#039;t REALLY need to have gotten any coding done for the last 5 hours.</description>
		<content:encoded><![CDATA[<p>holy smoly. I uploaded it to another server (which happened to be running lighttp/debian), and it worked great on both IE (which STILL isn&#8217;t &#8216;testing&#8217; properly locally) and FF. </p>
<p>so obviously there is something going on with my other server (Apache/CentOS). wonder if it&#8217;s a mime type deal or because of APC or something. </p>
<p>this is going to drive me nuts.</p>
<p>although hey, I guess I didn&#8217;t REALLY need to have gotten any coding done for the last 5 hours.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ragaskar</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-672</link>
		<dc:creator>ragaskar</dc:creator>
		<pubDate>Fri, 14 Mar 2008 00:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-672</guid>
		<description>this seems to work fantastically when compiled from Flex Builder and viewed with FF, but not at all when I serve it from our web server (and view with FF or IE) or view it with IE7 (web or locally).

You don&#039;t have any live examples up so I can see if it&#039;s something with my code or a common problem? Trying to eliminate some of the mystery variables.</description>
		<content:encoded><![CDATA[<p>this seems to work fantastically when compiled from Flex Builder and viewed with FF, but not at all when I serve it from our web server (and view with FF or IE) or view it with IE7 (web or locally).</p>
<p>You don&#8217;t have any live examples up so I can see if it&#8217;s something with my code or a common problem? Trying to eliminate some of the mystery variables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lars</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-145</link>
		<dc:creator>lars</dc:creator>
		<pubDate>Mon, 14 Jan 2008 09:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-145</guid>
		<description>I&#039;m using the Flex 3 SDK, but the frame option does exist in Flex 2 as well.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using the Flex 3 SDK, but the frame option does exist in Flex 2 as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guntur</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-144</link>
		<dc:creator>guntur</dc:creator>
		<pubDate>Mon, 14 Jan 2008 07:12:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-144</guid>
		<description>Hi, what flex version are you using with the -frame option? I have flex2SDK and it won&#039;t work. The [Frame(factoryClass=&quot;&quot;)] embed works great though. Thanks</description>
		<content:encoded><![CDATA[<p>Hi, what flex version are you using with the -frame option? I have flex2SDK and it won&#8217;t work. The [Frame(factoryClass="")] embed works great though. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sectore</title>
		<link>http://www.nulldesign.de/2007/11/30/as3-preloading-continued/comment-page-1/#comment-80</link>
		<dc:creator>sectore</dc:creator>
		<pubDate>Mon, 17 Dec 2007 19:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.nulldesign.de/2007/11/30/as3-preloading-continued/#comment-80</guid>
		<description>Nice discussion and thanks to Sven for sharing  his solution.

Anyway, I prefer Keith&#039;s way and hide all Flex classes located within 
the &quot;mx&quot; packages folder using an individual config file named 
&quot;Application-config.xml&quot; and add this as a compiler option

-load-config={pathToYourProject}/Application-config.xml

or using Adobes Flex Ant tasks
&lt;load-config filename=&quot;${basedir}/Application-config.xml&quot; /&gt;

To avoid to include the Flex classes mentioned above I declare within 
the &quot;Application-config.xml&quot; only the &quot;playerglobal.swc&quot; as a element of 
the library path:

&lt;library-path&gt;
&lt;path-element&gt;{pathToFlex2SDK}/frameworks/libs/playerglobal.swc&lt;/path-element&gt;
&lt;/library-path&gt;

Anyway,  that&#039;s not the only way of doing and Sven&#039;s  solution is pretty 
straight forward , too ;-)

-sectore
--
&lt;a href=&quot;http://www.websector.de/blog/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.websector.de/blog/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Nice discussion and thanks to Sven for sharing  his solution.</p>
<p>Anyway, I prefer Keith&#8217;s way and hide all Flex classes located within<br />
the &#8220;mx&#8221; packages folder using an individual config file named<br />
&#8220;Application-config.xml&#8221; and add this as a compiler option</p>
<p>-load-config={pathToYourProject}/Application-config.xml</p>
<p>or using Adobes Flex Ant tasks<br />
&lt;load-config filename=&#8221;${basedir}/Application-config.xml&#8221; /&gt;</p>
<p>To avoid to include the Flex classes mentioned above I declare within<br />
the &#8220;Application-config.xml&#8221; only the &#8220;playerglobal.swc&#8221; as a element of<br />
the library path:</p>
<p>&lt;library-path&gt;<br />
&lt;path-element&gt;{pathToFlex2SDK}/frameworks/libs/playerglobal.swc&lt;/path-element&gt;<br />
&lt;/library-path&gt;</p>
<p>Anyway,  that&#8217;s not the only way of doing and Sven&#8217;s  solution is pretty<br />
straight forward , too ;-)</p>
<p>-sectore<br />
&#8211;<br />
<a href="http://www.websector.de/blog/" target="_blank" rel="nofollow">http://www.websector.de/blog/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
