<?xml version="1.0" encoding="utf-8"?>
<FxApplication name="TextGraphic_lineThrough_test"
xmlns="http://ns.adobe.com/mxml/2009">
<layout>
<BasicLayout />
</layout>
<Script>
<![CDATA[
private function fxCheckBox_change(evt:Event):void {
var value:Boolean = fxCheckBox.selected
textGraphic.setStyle("lineThrough", value);
}
]]>
</Script>
<Form>
<FormItem label="lineThrough:">
<FxCheckBox id="fxCheckBox"
selected="true"
change="fxCheckBox_change(event);" />
</FormItem>
</Form>
<TextGraphic id="textGraphic"
fontSize="24"
lineThrough="true"
horizontalCenter="0"
verticalCenter="0">
<text>
<![CDATA[The quick brown fox jumped over the lazy dog.]]>
</text>
</TextGraphic>
</FxApplication>