Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. Run the following code:
<?xml version="1.0"?>
<!-- Simple example to demonstrate the FxCheckBox control -->
<FxApplication xmlns="http://ns.adobe.com/mxml/2009">
<Script>
<![CDATA[
import mx.components.FxCheckBox;
]]
>
</Script>
<Panel title="FxCheckBox Control Example"
height="75%" width="75%" layout="vertical" horizontalCenter="0"
verticalCenter="0" paddingTop="10" paddingBottom="10" paddingLeft="10"
paddingRight="10">
<VGroup>
<Label text="Hamburger Condiments (0.25 each):" />
<FxCheckBox id="lettuceCB" label="Lettuce" />
<FxCheckBox id="tomatoCB" label="Tomato" />
<FxCheckBox id="pickleCB" label="Pickles"/>
<FxCheckBox id="onionCB" label="Onions" />
<FxCheckBox id="mayoCB" label="Mayonnaise" />
</VGroup>
<Spacer height="40" />
<HGroup>
<Label text="Total Price: " />
<Label id="totalString" text="$4.50"/>
</HGroup>
</Panel>
</FxApplication>
2. Resize the application smaller
Actual Results:
Scrollbars never appear. FxCheckBoxExample.swf shows the problem.
Expected Results:
Scrollbars should appear like in mxApplicationCheckBoxExample.swf.
Workaround (if any):
Use Application instead of FxApplication.