<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" showCloseButton="true">
    
    <mx:Script>
        <![CDATA[
            import flash.net.navigateToURL;
            
            private function pimpMyself():void {
                navigateToURL(new URLRequest('http://dougmccune.com/blog'))
            }
        ]]>
    </mx:Script>
    
    <mx:Text width="100%" text="MUXMASTER was created by Doug McCune. It is not an official Muxtape product. There is no affiliation with muxtape.com or the creator of Muxtape. I don't know the dude, although I'm sure he's a cool guy." />
    <mx:Text width="100%" text="You can check out my blog for more information. I make software. My blog talks about dorky Flex stuff." />
    
    <mx:LinkButton styleName="toolbarButton" label="http://www.dougmccune.com/blog" click="pimpMyself()" />
    
    <mx:Text width="100%" text="MUXMASTER was built with Adobe Flex. It uses some cool open source code. All the code that was used to build this application (and the source of this application itself) is all available. Check out my blog for a writeup about this app." />
    
    <mx:VBox width="100%" height="100%" verticalAlign="middle" horizontalAlign="center">
        <mx:Button skin="@Embed('/assets/128.png')" click="pimpMyself()" />
    </mx:VBox>
    
</mx:TitleWindow>