Module in Flex 3


 

Module in Flex 3

In the Flex 3, Modules are dynamically loadable SWF that contains an IFlexModuleFactory class factory.

In the Flex 3, Modules are dynamically loadable SWF that contains an IFlexModuleFactory class factory.

Module in Flex 3:-

In the Flex 3,  Modules are dynamically loadable SWF that contains an IFlexModuleFactory class factory. They can be loaded if application requires to load these module and they can be unloaded when application no longer needs a module.  These modules can not be run independently of an application. In this example you can see how to create a module with the help of module class. More then one applications also used these modules. An MXML-based module file's root tag is <mx:Module>.

First we will create a module after that we will compile it.

Example:-

This is loginmodule.mxml code:-

<?xml version="1.0"?>

<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" >

<mx:Script><![CDATA[

import mx.controls.Alert;

private function submit():void{

var name:String = loginnametext.text;

var password:String = loginpasswordtext.text;

if(name!="" && password!=""){

Alert.show("User Name is :" + name);

loginnametext.text = "";

loginpasswordtext.text = "";

}

else{

Alert.show("Enter correct name and password!");

}

}

]]>

</mx:Script>

<mx:Panel id="loginpanel" height="200" width="328">

<mx:HBox width="302">

<mx:Label id="loginname" text="Enter name "/>

<mx:TextInput id="loginnametext"/>

</mx:HBox>

<mx:HBox width="301">

<mx:Label id="loginpassword" text="Enter password"/>

0

<mx:TextInput id="loginpasswordtext" displayAsPassword="true"/>

</mx:HBox>

<mx:HBox>

1

<mx:Button label="Submit" click="submit()"/>

</mx:HBox>

</mx:Panel>

2

</mx:Module>

main.mxml code:-

3

<?xml version="1.0"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

<mx:ModuleLoader url="loginmodule.swf"/>

4

</mx:Application>

In this example user can also see we have too use module loader class for load login module in the main application.

Output:-

5

Download this code

Ads