<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    xmlns:mx        = "http://www.adobe.com/2006/mxml" 
    layout            = "absolute" 
    xmlns:controls    = "controls.*"
    width            = "160"
    height            = "60"
    backgroundColor    = "#ffffff"
    backgroundGradientColors    = "[#ffffff,#ffffff]"
    backgroundGradientAlphas    = "[1,1]" viewSourceURL="srcview/index.html">
    
    <mx:Style source= "styles/main.css"/>        
    
    <controls:CustomButton
        x            = "10"
        y            = "6"
        width        = "140"
        height        = "48"
        label        = "Click Me!"/>
    
</mx:Application>