<?xml version="1.0" encoding="utf-8"?>
<mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    xmlns="http://www.degrafa.com/2007"
    xmlns:paint="paint.*"
    pageTitle="Externalizing Fills and Strokes"
    
     viewSourceURL="srcview/index.html">
    
    <paint:Fills
        id="fills"
        />
    <paint:Strokes
        id="strokes"
        />
    
    <GeometryComposition
        graphicsTarget="{[ surface ]}"
        >
        <Circle
            radius="100"
            fill="{fills.radialTanTangerine}"
            stroke="{strokes.linearWhiteTangerine}"
            />
    </GeometryComposition>
    
    <Surface
        id="surface"
        verticalCenter="0"
        horizontalCenter="0"
        />
    
</mx:Application>