| <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" width="500" height="500" > |
| <s:states> |
| <s:State name="defaultState" /> |
| <s:State name="state2" /> |
| <s:State name="state3" /> |
| </s:states> |
| |
| <s:layout> |
| <s:VerticalLayout/> |
| </s:layout> |
| |
| <s:Rect height="50%" width="60%" id="perRect"> |
| <s:fill> |
| <s:SolidColor color="0x0000CC"/> |
| </s:fill> |
| </s:Rect> |
| |
| <s:Ellipse percentHeight="50" width="60" includeIn="state2" id="ell"> |
| <s:stroke> |
| <s:SolidColorStroke color="0xCC00CC" weight="2"/> |
| </s:stroke> |
| </s:Ellipse> |
| |
| <s:Rect height="75" width="80" excludeFrom="state3" id="expRect"> |
| <s:fill> |
| <s:SolidColor color="0xFF0000"/> |
| </s:fill> |
| </s:Rect> |
| |
| <s:Button id="btn" /> |
| |
| </s:Group> |
| |