<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:components="components.*"
    layout="absolute"  viewSourceURL="srcview/index.html">
    
    <mx:ApplicationControlBar dock="true">
        <mx:Label text="Working With Graphics Blend Modes in Flex"  fontWeight="bold" fontSize="18"/>
        <mx:Spacer width="100%" />
        <mx:Button 
            label="Andrew Trice" 
            click="navigateToURL( new URLRequest('http://www.cynergysystems.com/blogs/page/andrewtrice'), '_blank' );"  
            fontWeight="bold" fontSize="18" height="40"
            icon="@Embed('/assets/cynergy.png')" />
    </mx:ApplicationControlBar>
    
    <mx:TabNavigator>
        
    </mx:TabNavigator>
    <mx:Script>
        <![CDATA[
            import flash.net.navigateToURL;
        ]]>
    </mx:Script>
    
    
    <mx:TabNavigator top="10" left="10" right="10" bottom="10">
    
        <components:SourceImage label="Source Images" />
        <components:ImageBlendModes label="Image Blend Modes" />
        <components:AnimatedImageBlendModes label="Animated Image Blend Modes" />
        <components:BarChartBlendMode label="Flex Object Blend Modes" />
        <components:BarChartMaskBlendMode label="Flex Object Blend Modes w/ Masks" />
        
        
    </mx:TabNavigator>
    
    
</mx:Application>