<?xml version="1.0" encoding="utf-8"?>
<mx:Application name="HDividedBox_horizontalDividerCursor_test"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Script>
<![CDATA[
[Embed("assets/arrow_refresh.png")]
private const ArrowRefreshIcon:Class;
private function hDividedBox_init():void {
hDividedBox.setStyle("horizontalDividerCursor", ArrowRefreshIcon);
}
]]>
</mx:Script>
<mx:HDividedBox id="hDividedBox"
width="100%"
height="100%"
initialize="hDividedBox_init();">
<mx:HBox backgroundColor="haloGreen"
width="100%"
height="100%">
</mx:HBox>
<mx:HBox backgroundColor="haloBlue"
width="100%"
height="100%">
</mx:HBox>
</mx:HDividedBox>
</mx:Application>