<?xml version="1.0" encoding="utf-8"?>
<!--- asdoc\ANTBuildProject.mxml -->
<!---
     Main Application Used For Testing ANT Build Process.

     @see mx.core.Application
-->
<mx:Application creationComplete="onCreationComplete(event)"
    layout="absolute"
    viewSourceURL="http://unitedmindset.com/jonbcampos/wp-content/flex_content/ant_build_v3/srcview/index.html"
    xmlns:components="com.unitedmindset.components.*"
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        <![CDATA[
            import mx.events.FlexEvent;
            
            /**
             * Function to run on creation complete.
             *
             * @params event FlexEvent.CreationComplete
             */
            public function onCreationComplete(event:FlexEvent):void
            {
                //do nothing
            }
        ]]>
    </mx:Script>
    <!---
         Label Centered in Application.

         @see mx.controls.Label
    -->
    <mx:Label id="centeredLabel"
        text="Label"
        fontSize="16"
        fontWeight="bold"
        horizontalCenter="0"
        verticalCenter="0"/>

    <!---
         /**
         * Super Label in the top left corner.
         *
         * @see com.unitedmindset.components.SuperLabel
         */
    -->
    <components:SuperLabel id="superLabel" text="Label"/>
</mx:Application>