<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns="http://www.degrafa.com/2007"
layout="absolute"
backgroundGradientColors="[#333333,#666666]" xmlns:decorators="decorators.*" viewSourceURL="srcview/index.html">
<mx:Style source="assets/style/style.css"/>
<mx:Label text="Basic Decorator" top="30" right="30" styleName="title"/>
<Ellipse graphicsTarget="{[theCanvas]}" left="20" right="20" bottom="100" top="100">
<stroke>
<SolidStroke weight="1" color="#FFFFFF"/>
</stroke>
<fill>
<SolidFill color="#666"/>
</fill>
<decorators>
<decorators:DashedLineDecorator/>
</decorators>
</Ellipse>
<mx:Canvas id="theCanvas" width="500" height="500" verticalCenter="0" horizontalCenter="0" borderThickness="0" borderStyle="solid"/>
</mx:Application>