<?xml version="1.0" encoding="utf-8"?>
<mx:Application name="RadioButton_labelPlacement_test"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white" viewSourceURL="srcview/index.html">
<mx:Script>
<![CDATA[
import mx.controls.ButtonLabelPlacement;
private const arr:Array = [ButtonLabelPlacement.LEFT,
ButtonLabelPlacement.RIGHT,
ButtonLabelPlacement.TOP,
ButtonLabelPlacement.BOTTOM];
]]>
</mx:Script>
<mx:ApplicationControlBar dock="true">
<mx:Form styleName="plain">
<mx:FormItem label="labelPlacement:">
<mx:ComboBox id="comboBox"
dataProvider="{arr}"
selectedIndex="1" />
</mx:FormItem>
</mx:Form>
</mx:ApplicationControlBar>
<mx:RadioButton id="radioButton"
label="RadioButton"
labelPlacement="{comboBox.selectedItem}" />
</mx:Application>