Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. run following code:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo"
minWidth="1024" minHeight="768">
<s:Group id="parentGroup" >
<s:Group >
<s:layout>
<s:BasicLayout/>
</s:layout>
<mx:Label x="300" y="200" text="child" baseline="240" horizontalCenter="50" verticalCenter="50" />
</s:Group>
<s:Rect id="border" left="0" right="0" top="0" bottom="0">
<s:stroke>
<s:SolidColorStroke color="0xFF0000"/>
</s:stroke>
</s:Rect>
</s:Group>
</s:Application>
2.
3.
Actual Results:
the child is outside of rectangle box.
Expected Results:
the child should be inside of the rectangle box
Workaround (if any):