<?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: SWFAddress Design Template 2.0</title>
	<atom:link href="http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 09:28:11 -0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: emre</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-51244</link>
		<dc:creator>emre</dc:creator>
		<pubDate>Sat, 05 Nov 2011 14:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-51244</guid>
		<description>ApplicationForm.fla file ... There is no file ..
please me send for as2....very very thanks..

orayemre@

gmail.com</description>
		<content:encoded><![CDATA[<p>ApplicationForm.fla file &#8230; There is no file ..<br />
please me send for as2&#8230;.very very thanks..</p>
<p>orayemre@</p>
<p>gmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emre</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-51243</link>
		<dc:creator>emre</dc:creator>
		<pubDate>Sat, 05 Nov 2011 14:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-51243</guid>
		<description>ApplicationForm.fla file ... There is no file ..
please me send for as2....very very thanks..</description>
		<content:encoded><![CDATA[<p>ApplicationForm.fla file &#8230; There is no file ..<br />
please me send for as2&#8230;.very very thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MJP</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-46706</link>
		<dc:creator>MJP</dc:creator>
		<pubDate>Thu, 24 Mar 2011 15:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-46706</guid>
		<description>sorry, left out a line of code:

import flash.events.*;
import flash.net.URLLoader;
import flash.net.URLRequest;
import fl.controls.ProgressBar;

var loadSection:String = “assets/your.swf”;

var isLoaded:Boolean = false;

function loadContent():void {
//
trace(“load Content”)
var url:URLRequest=new URLRequest(loadSection);

var ldr:Loader=new Loader();

var my_pb:ProgressBar = new ProgressBar();
my_pb.source = ldr.contentLoaderInfo;
my_pb.x = 100;
my_pb.y = 200;
ldr.load(url);

yourLoader.addChild(ldr);
addChild(my_pb);
	
isLoaded = true;

ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);
function startListener (e:Event):void{
removeChild(my_pb);
my_pb = null;
trace(“Loading Completed”);
}
}</description>
		<content:encoded><![CDATA[<p>sorry, left out a line of code:</p>
<p>import flash.events.*;<br />
import flash.net.URLLoader;<br />
import flash.net.URLRequest;<br />
import fl.controls.ProgressBar;</p>
<p>var loadSection:String = “assets/your.swf”;</p>
<p>var isLoaded:Boolean = false;</p>
<p>function loadContent():void {<br />
//<br />
trace(“load Content”)<br />
var url:URLRequest=new URLRequest(loadSection);</p>
<p>var ldr:Loader=new Loader();</p>
<p>var my_pb:ProgressBar = new ProgressBar();<br />
my_pb.source = ldr.contentLoaderInfo;<br />
my_pb.x = 100;<br />
my_pb.y = 200;<br />
ldr.load(url);</p>
<p>yourLoader.addChild(ldr);<br />
addChild(my_pb);</p>
<p>isLoaded = true;</p>
<p>ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);<br />
function startListener (e:Event):void{<br />
removeChild(my_pb);<br />
my_pb = null;<br />
trace(“Loading Completed”);<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MJP</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-46705</link>
		<dc:creator>MJP</dc:creator>
		<pubDate>Thu, 24 Mar 2011 14:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-46705</guid>
		<description>This site seems it has no activity. Anyway, about the preloaders. I figured it out. I set up preloaders dynamically within each .as file.

For anyone who wants to know (this is for a progress bar):

import flash.events.*;
import flash.net.URLLoader;
import flash.net.URLRequest;
import fl.controls.ProgressBar;

var loadSection:String = &quot;assets/your.swf&quot;;

var isLoaded:Boolean = false;

function loadContent():void {
	//
	trace(&quot;load Content&quot;)
	var url:URLRequest=new URLRequest(loadSection);
	
        var ldr:Loader=new Loader();
	

var my_pb:ProgressBar = new ProgressBar();
my_pb.source = ldr.contentLoaderInfo;
my_pb.x = 100;
my_pb.y = 200;
	ldr.load(url);
	
 
	yourLoader.addChild(ldr);

	
	
	isLoaded = true;
	
	ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);
function startListener (e:Event):void{
removeChild(my_pb);
my_pb = null;
trace(&quot;Loading Completed&quot;);
}
}</description>
		<content:encoded><![CDATA[<p>This site seems it has no activity. Anyway, about the preloaders. I figured it out. I set up preloaders dynamically within each .as file.</p>
<p>For anyone who wants to know (this is for a progress bar):</p>
<p>import flash.events.*;<br />
import flash.net.URLLoader;<br />
import flash.net.URLRequest;<br />
import fl.controls.ProgressBar;</p>
<p>var loadSection:String = &#8220;assets/your.swf&#8221;;</p>
<p>var isLoaded:Boolean = false;</p>
<p>function loadContent():void {<br />
	//<br />
	trace(&#8220;load Content&#8221;)<br />
	var url:URLRequest=new URLRequest(loadSection);</p>
<p>        var ldr:Loader=new Loader();</p>
<p>var my_pb:ProgressBar = new ProgressBar();<br />
my_pb.source = ldr.contentLoaderInfo;<br />
my_pb.x = 100;<br />
my_pb.y = 200;<br />
	ldr.load(url);</p>
<p>	yourLoader.addChild(ldr);</p>
<p>	isLoaded = true;</p>
<p>	ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);<br />
function startListener (e:Event):void{<br />
removeChild(my_pb);<br />
my_pb = null;<br />
trace(&#8220;Loading Completed&#8221;);<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MJP</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-46540</link>
		<dc:creator>MJP</dc:creator>
		<pubDate>Tue, 15 Mar 2011 17:19:16 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-46540</guid>
		<description>How difficult would it be to add a preloader to the imported swfs?</description>
		<content:encoded><![CDATA[<p>How difficult would it be to add a preloader to the imported swfs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash design template</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-44981</link>
		<dc:creator>Flash design template</dc:creator>
		<pubDate>Fri, 17 Dec 2010 14:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-44981</guid>
		<description>[...] Chakra Media blog » SWFAddress Design Template 2.0 17 Nov 2007. With the release of SWFAddress 2.0 I figured now would be a good time to update my Flash design template to version two. Chakra Media blog » SWFAddress Design Template 2.0 [...]</description>
		<content:encoded><![CDATA[<p>[...] Chakra Media blog » SWFAddress Design Template 2.0 17 Nov 2007. With the release of SWFAddress 2.0 I figured now would be a good time to update my Flash design template to version two. Chakra Media blog » SWFAddress Design Template 2.0 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SabrinaFigueroa</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-29139</link>
		<dc:creator>SabrinaFigueroa</dc:creator>
		<pubDate>Tue, 09 Mar 2010 10:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-29139</guid>
		<description>All people deserve very good life and &lt;a href=&quot;http://lowest-rate-loans.com&quot; rel=&quot;nofollow&quot;&gt;loan&lt;/a&gt; or just term loan would make it better. Just because freedom bases on money state.</description>
		<content:encoded><![CDATA[<p>All people deserve very good life and <a href="http://lowest-rate-loans.com" rel="nofollow">loan</a> or just term loan would make it better. Just because freedom bases on money state.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umano</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-19366</link>
		<dc:creator>Umano</dc:creator>
		<pubDate>Sat, 07 Mar 2009 21:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-19366</guid>
		<description>Hi,it&#039;s great and useful but i cannot open the fla&#039;s files in flash cs4 (it seems strange) the error is &quot;the docfile has been corrupted&quot;, it happens also with as2 files

Thank you</description>
		<content:encoded><![CDATA[<p>Hi,it&#8217;s great and useful but i cannot open the fla&#8217;s files in flash cs4 (it seems strange) the error is &#8220;the docfile has been corrupted&#8221;, it happens also with as2 files</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Potorac</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-8180</link>
		<dc:creator>Andrei Potorac</dc:creator>
		<pubDate>Wed, 10 Dec 2008 10:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-8180</guid>
		<description>Looking forward for the tutorial. :)</description>
		<content:encoded><![CDATA[<p>Looking forward for the tutorial. <img src='http://chakramedia.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MechanisM</title>
		<link>http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/comment-page-1/#comment-5856</link>
		<dc:creator>MechanisM</dc:creator>
		<pubDate>Sun, 28 Sep 2008 23:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://chakramedia.com/blog/2007/11/17/swfaddress-design-template-20/#comment-5856</guid>
		<description>I&#039;m currently looking any examle like this one for Flex
Anyone had seen smth like that??</description>
		<content:encoded><![CDATA[<p>I&#8217;m currently looking any examle like this one for Flex<br />
Anyone had seen smth like that??</p>
]]></content:encoded>
	</item>
</channel>
</rss>

