In this example user can load modules with the help of ModuleLoader class. This is simple way to load modules in the main application.
In this example user can load modules with the help of ModuleLoader class. This is simple way to load modules in the main application.
<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:ModuleLoader url="loginmodule.swf"/> </mx:Application>
|
<?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" title="Login Module"> <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"/> <mx:TextInput id="loginpasswordtext" displayAsPassword="true"/> </mx:HBox> <mx:HBox> <mx:Button label="Submit" click="submit()"/> </mx:HBox> </mx:Panel> </mx:Module> |