| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <s:HGroup xmlns:fx="http://ns.adobe.com/mxml/2009" |
| xmlns:mx="library://ns.adobe.com/flex/mx" |
| xmlns:s="library://ns.adobe.com/flex/spark"> |
| |
| <s:Graphic id="rect1"> |
| <s:Rect id="rect2" height="40" width="30"> |
| <s:fill> |
| <mx:SolidColor color="0xFFDD99" /> |
| </s:fill> |
| </s:Rect> |
| </s:Graphic> |
| <s:Graphic id="line1"> |
| <s:Line id="line2" xFrom="0" yFrom="0" xTo="20" yTo="50"> |
| <s:stroke> |
| <mx:SolidColorStroke color="0xFFDD99" /> |
| </s:stroke> |
| </s:Line> |
| </s:Graphic> |
| <s:Graphic id="ellipse1"> |
| <s:Ellipse id="ellipse2" width="25" height="35"> |
| <s:fill> |
| <mx:SolidColor color="0xFFDD99" /> |
| </s:fill> |
| </s:Ellipse> |
| </s:Graphic> |
| <s:Graphic id="path1"> |
| <s:Path id="path2" data="M 10 10 L 0 32 20 32 Z"> |
| <s:fill> |
| <mx:SolidColor color="0xFFDD99" /> |
| </s:fill> |
| </s:Path> |
| </s:Graphic> |
| <s:Graphic id="group1"> |
| <s:Group id="g1"> |
| <s:Path id="path3" data="M 40 10 L 0 32 52 32 Z"> |
| <s:fill> |
| <mx:SolidColor color="0x000000" /> |
| </s:fill> |
| </s:Path> |
| <s:Ellipse id="ellipse3" width="25" height="35"> |
| <s:fill> |
| <mx:SolidColor color="0xFFDD99" /> |
| </s:fill> |
| </s:Ellipse> |
| </s:Group> |
| </s:Graphic> |
| <s:Rect left="0" right="0" top="0" bottom="0"> |
| <s:fill> |
| <s:SolidColor color="0x0000AA" /> |
| </s:fill> |
| </s:Rect> |
| </s:HGroup> |