Sha256: 8446cc2255d14b32450a5235c85a41528372184ce7972d27ba54ffd2222353db
Contents?: true
Size: 990 Bytes
Versions: 1
Compression:
Stored size: 990 Bytes
Contents
<?xml version="1.0" encoding="utf-8"?> <fab:FlexModule xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:fab="org.puremvc.as3.multicore.utilities.fabrication.components.*" xmlns:local="<%= base_package%>.modules.<%= module_folder%>.view.components.*" width="100%" height="100%"> <mx:Script> <![CDATA[ import <%= base_package%>.modules.<%= module_folder%>.controller.<%= module_name%>ModuleStartupCommand; override public function getStartupCommand():Class { return <%= module_name%>ModuleStartupCommand; } override public function getClassByName(path:String):Class { return getDefinitionByName(path) as Class; } ]]> </mx:Script> <mx:Label text="This is the <%= module_name%> module" color="#FFFFFF" fontSize="30" width="100%" textAlign="center" fontWeight="bold"/> <mx:VBox height="100%" width="100%" horizontalAlign="center" verticalAlign="middle"> <local:<%= module_name%>View id="<%= module_folder%>View"/> </mx:VBox> </fab:FlexModule>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fabricator-0.0.5 | generators/pure_module/templates/module.mxml |