<?xml version="1.0" encoding="utf-8"?>
<mx:Application name="LinkButton_cornerRadius_test"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white" viewSourceURL="srcview/index.html">
<mx:ApplicationControlBar dock="true">
<mx:Form styleName="plain">
<mx:FormItem label="cornerRadius:">
<mx:HSlider id="slider"
minimum="0"
maximum="10"
value="4"
snapInterval="1"
tickInterval="1"
liveDragging="false" />
</mx:FormItem>
</mx:Form>
</mx:ApplicationControlBar>
<mx:LinkButton id="linkButton"
label="LinkButton"
cornerRadius="{slider.value}" />
<mx:Label text="Roll over the link button to see corner radius" />
</mx:Application>