<?xml version="1.0" encoding="utf-8"?>
<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
{
}
]]>
</mx:Script>
<mx:Label id="centeredLabel"
text="Label"
fontSize="16"
fontWeight="bold"
horizontalCenter="0"
verticalCenter="0"/>
<components:SuperLabel id="superLabel" text="Label"/>
</mx:Application>