<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
    layout="absolute" width="400" height="354"
    backgroundColor="#000000" color="#FFFFFF" viewSourceURL="srcview/index.html">
    
    <mx:Canvas x="10" y="10" width="380" height="305"
        backgroundImage="fx_appicon_small.jpg"
        borderSkin="cHc.CuSTomiZableImageSkin"         
        backgroundSize="{bgImageMode.selectedValue}" >
    </mx:Canvas>
    
    <mx:RadioButtonGroup id="bgImageMode"/>
    <mx:RadioButton y="323" label="Center" groupName="bgImageMode" value="center" 
        right="273.5" left="44.5" selected="true"/>
    <mx:RadioButton y="323" label="Stretch" groupName="bgImageMode" value="stretch" 
        right="182.5" left="134.5"/>
    <mx:RadioButton y="323" label="Tile" groupName="bgImageMode" value="tile" 
        right="114.5" left="220.5"/>
    <mx:RadioButton y="323" label="Zoom" groupName="bgImageMode" value="zoom" 
        right="24.5" left="298.5"/>
    
</mx:Application>