<?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"
	>
<channel>
	<title>Comments on: Using Flex Modules to Load Dynamic Applications at Login</title>
	<atom:link href="http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/</link>
	<description>AJAX, Flex and other RIA</description>
	<pubDate>Fri, 12 Mar 2010 05:22:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: julsoft</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-27807</link>
		<dc:creator>julsoft</dc:creator>
		<pubDate>Thu, 12 Mar 2009 10:14:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-27807</guid>
		<description>Hi Beau,

I have a flex site using modules, but I have a problem with the memory. Every time when I unload module this module is not leaving the memory. I have search in google but there are no solutions/workarounds. Your example is not freeing memory too. Do you have any solution?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Beau,</p>
<p>I have a flex site using modules, but I have a problem with the memory. Every time when I unload module this module is not leaving the memory. I have search in google but there are no solutions/workarounds. Your example is not freeing memory too. Do you have any solution?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorenzo</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-26930</link>
		<dc:creator>Lorenzo</dc:creator>
		<pubDate>Fri, 27 Feb 2009 18:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-26930</guid>
		<description>Hi, 

very cool example...

can you explain me this piece of code...i can't understand the meaning of bindable metadata tag in this context..

        /**
         * Storage for loggedIn
         */
        private var _loggedIn:Boolean = false;
        
        [Bindable('loggedInChanged')]
        /**
         * Flag indicating the current login status of the user
         * @readonly
         */
        public function get loggedIn() : Boolean
        {
            return _loggedIn;
        }


 public function login(userInfo:UserVO) : void
        {
            if(userInfo != null &#38;&#38; !loggedIn)
            {
                _currentUser = userInfo;
                _loggedIn = true;
                dispatchEvent(new Event('loggedInChanged'));
                dispatchEvent(new Event('currentUserChanged'));
                dispatchEvent(new UserManagerEvent(UserManagerEvent.LOGIN));
            }
        }

when you set _loggedIn to true and then dispatch the event you alert that the properties has change value..is it true?but why bindable?

thanks in advance

Regards Lorenzo</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>very cool example&#8230;</p>
<p>can you explain me this piece of code&#8230;i can&#8217;t understand the meaning of bindable metadata tag in this context..</p>
<p>        /**<br />
         * Storage for loggedIn<br />
         */<br />
        private var _loggedIn:Boolean = false;</p>
<p>        [Bindable('loggedInChanged')]<br />
        /**<br />
         * Flag indicating the current login status of the user<br />
         * @readonly<br />
         */<br />
        public function get loggedIn() : Boolean<br />
        {<br />
            return _loggedIn;<br />
        }</p>
<p> public function login(userInfo:UserVO) : void<br />
        {<br />
            if(userInfo != null &amp;&amp; !loggedIn)<br />
            {<br />
                _currentUser = userInfo;<br />
                _loggedIn = true;<br />
                dispatchEvent(new Event(&#8217;loggedInChanged&#8217;));<br />
                dispatchEvent(new Event(&#8217;currentUserChanged&#8217;));<br />
                dispatchEvent(new UserManagerEvent(UserManagerEvent.LOGIN));<br />
            }<br />
        }</p>
<p>when you set _loggedIn to true and then dispatch the event you alert that the properties has change value..is it true?but why bindable?</p>
<p>thanks in advance</p>
<p>Regards Lorenzo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafael Oliveira</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-23702</link>
		<dc:creator>Rafael Oliveira</dc:creator>
		<pubDate>Tue, 27 Jan 2009 15:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-23702</guid>
		<description>I doubt,

If I change it 



	


to



	


the application run normaly, but if the modules are independents views I thought it should produce a runtime error, however compile and run!

I don't understand it! :(</description>
		<content:encoded><![CDATA[<p>I doubt,</p>
<p>If I change it </p>
<p>to</p>
<p>the application run normaly, but if the modules are independents views I thought it should produce a runtime error, however compile and run!</p>
<p>I don&#8217;t understand it! <img src='http://www.beauscott.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-7607</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 20 Aug 2008 01:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-7607</guid>
		<description>Is there a way to load flex modules or flex applications from swfs which don't have  the flex framework loaded.  I've posted this to ActionScript.org  


    Hi Folks, I'm trying create an ultra lightweight loader and load a flex application. Are there any suggestions on how to go about doing this? What are the tradeoffs using the SWFLoader class, how robust is it, and why should one choose it over the ModuleManager()? Thanks at all.



public var info:IModuleInfo;

private function initApp():void {

info = ModuleManager.getModule("http://"   domain   "Viewer.swf");
info.load();
}

public var ourViewerModule : DisplayObject;
private function onReadyHandler(e:ModuleEvent):void {
ourViewerModule = info.factory.create() as DisplayObject;
ourCanvas.addChild(ourViewer3DModule);
}</description>
		<content:encoded><![CDATA[<p>Is there a way to load flex modules or flex applications from swfs which don&#8217;t have  the flex framework loaded.  I&#8217;ve posted this to ActionScript.org  </p>
<p>    Hi Folks, I&#8217;m trying create an ultra lightweight loader and load a flex application. Are there any suggestions on how to go about doing this? What are the tradeoffs using the SWFLoader class, how robust is it, and why should one choose it over the ModuleManager()? Thanks at all.</p>
<p>public var info:IModuleInfo;</p>
<p>private function initApp():void {</p>
<p>info = ModuleManager.getModule(&#8221;http://&#8221;   domain   &#8220;Viewer.swf&#8221;);<br />
info.load();<br />
}</p>
<p>public var ourViewerModule : DisplayObject;<br />
private function onReadyHandler(e:ModuleEvent):void {<br />
ourViewerModule = info.factory.create() as DisplayObject;<br />
ourCanvas.addChild(ourViewer3DModule);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex Best Practices &#124; Anden Solutions</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-7450</link>
		<dc:creator>Flex Best Practices &#124; Anden Solutions</dc:creator>
		<pubDate>Fri, 15 Aug 2008 21:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-7450</guid>
		<description>[...] http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/" rel="nofollow">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umer</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-6681</link>
		<dc:creator>Umer</dc:creator>
		<pubDate>Thu, 31 Jul 2008 09:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-6681</guid>
		<description>it showing error
Error 2035 while loading module
the problem i think is that its not generating swf for login screen neither for any module</description>
		<content:encoded><![CDATA[<p>it showing error<br />
Error 2035 while loading module<br />
the problem i think is that its not generating swf for login screen neither for any module</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pierre</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-6279</link>
		<dc:creator>pierre</dc:creator>
		<pubDate>Mon, 07 Jul 2008 17:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-6279</guid>
		<description>hello,

i try to use your demo in appolo but i have a error modules :
Error #2035: L'URL est introuvable. URL: app:/com/beauscott/examples/modules/LoginForm.swf

can your help me to resolve it?

Thanks.</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>i try to use your demo in appolo but i have a error modules :<br />
Error #2035: L&#8217;URL est introuvable. URL: app:/com/beauscott/examples/modules/LoginForm.swf</p>
<p>can your help me to resolve it?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaso</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-6019</link>
		<dc:creator>Jaso</dc:creator>
		<pubDate>Tue, 17 Jun 2008 09:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-6019</guid>
		<description>thanks a lot!</description>
		<content:encoded><![CDATA[<p>thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Jung</title>
		<link>http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-5414</link>
		<dc:creator>James Jung</dc:creator>
		<pubDate>Thu, 17 Apr 2008 20:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-applications-at-login/#comment-5414</guid>
		<description>Great article and sample! I am currently evaluating Flex and javaFX. This is one of what I really want to know. Thanks!</description>
		<content:encoded><![CDATA[<p>Great article and sample! I am currently evaluating Flex and javaFX. This is one of what I really want to know. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
