<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
                xmlns:mx="library://ns.adobe.com/flex/halo" 
                xmlns:drawing="com.tf.drawing.*"
                layout="absolute"  backgroundColor="#FFFFFF"
                viewSourceURL="srcview/index.html"  >


    <!-- Grey Border -->
    <mx:Container width="100%" height="100%" borderStyle="solid" cornerRadius="4" borderColor="#BBBBBB"/>
    
    <!-- Pencil Image -->
    <mx:Image source="@Embed('pencil.png')" horizontalCenter="0" verticalCenter="0" mouseEnabled="false" scaleContent="false"/>

    <!-- Link -->
    <mx:LinkButton label="created by Tony Fendall" right="6" bottom="6" click="navigate()"/>
    
    
    
    
    <!-- Drawable Overlay (where the magic happens) -->
    <drawing:DrawableOverlay width="100%" height="100%" />
    
    
    
    
    <fx:Script>
        <![CDATA[
            import flash.net.navigateToURL;
            private function navigate():void
                { navigateToURL(new URLRequest("http://www.tonyfendall.com"),"_blank"); }
        ]]>
    </fx:Script>
</mx:Application>